Revision: 693
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=693&view=rev
Author: mithro
Date: 2008-08-18 02:01:21 +0000 (Mon, 18 Aug 2008)
Log Message:
-----------
Fixed an unescaped untar.
Andy, could you look at this line? I don't think this will work properly under Windows.
Modified Paths:
--------------
trunk/python-ogre/environment.py
Modified: trunk/python-ogre/environment.py
===================================================================
--- trunk/python-ogre/environment.py 2008-08-18 01:57:45 UTC (rev 692)
+++ trunk/python-ogre/environment.py 2008-08-18 02:01:21 UTC (rev 693)
@@ -904,7 +904,8 @@
["wget", "http://downloads.sourceforge.net/opende/ode-0.10.1.tar.gz",downloadPath]
]
buildCmds = [
- [0, untar + os.path.join(downloadPath,"ode-0.10.1.tar.gz"), ''],
+ # FIXME: Should this untar not use the unTarGz method mentioned above?
+ [0, 'untar' + os.path.join(downloadPath,"ode-0.10.1.tar.gz"), ''],
[0, "chmod +x autogen.sh", baseDir],
[0, "./autogen.sh", baseDir],
[0, "./configure --prefix=%s --includedir=%s/include" %(PREFIX, PREFIX), baseDir],
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|