Revision: 664
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=664&view=rev
Author: mithro
Date: 2008-07-22 04:45:24 +0000 (Tue, 22 Jul 2008)
Log Message:
-----------
Clean the directory before retreiving the boost-python-index package.
Fixed the base name for boost.
Modified Paths:
--------------
trunk/python-ogre/environment.py
Modified: trunk/python-ogre/environment.py
===================================================================
--- trunk/python-ogre/environment.py 2008-07-18 13:58:55 UTC (rev 663)
+++ trunk/python-ogre/environment.py 2008-07-22 04:45:24 UTC (rev 664)
@@ -455,7 +455,7 @@
base = 'boost_1_34_1'
lib= 'boost_python-vc90-mt-1_34_1'
else:
- base = 'boost_1_35_0'
+ base = 'boost_1_35'
lib = 'boost_python-vc90-mt-1_36'
if isLinux() or isMac():
@@ -525,7 +525,8 @@
base = "libboost-python%s-index" % boost.base[6:].replace("_",".")
if isLinux() or isMac():
source = [
- ["cp",'-rf %s/ %s' % (os.path.join('python-ogre','boost'), base), os.getcwd()],
+ ["rm","-rf %s" % (base,), os.getcwd()],
+ ["cp",'-rvf %s/ %s' % (os.path.join('python-ogre','boost'), base), os.getcwd()],
]
# FIXME: This should have build commands!
buildCmds = []
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|