Revision: 694
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=694&view=rev
Author: mithro
Date: 2008-08-18 04:12:37 +0000 (Mon, 18 Aug 2008)
Log Message:
-----------
Fixed the boost directory and make sure it exists.
Modified Paths:
--------------
trunk/python-ogre/environment.py
Modified: trunk/python-ogre/environment.py
===================================================================
--- trunk/python-ogre/environment.py 2008-08-18 02:01:21 UTC (rev 693)
+++ trunk/python-ogre/environment.py 2008-08-18 04:12:37 UTC (rev 694)
@@ -455,7 +455,7 @@
base = 'boost_1_34_1'
lib= 'boost_python-vc90-mt-1_34_1'
else:
- base = 'boost_1_35'
+ base = 'boost_1_35_0'
lib = 'boost_python-vc90-mt-1_36'
if isLinux() or isMac():
@@ -475,9 +475,9 @@
## first handle bjam
[0, tar + ' zxf ' + os.path.join(downloadPath, bjambase) + '.tgz --overwrite', ''],
[0,"./build.sh " + bjambuildset, os.path.join(os.getcwd(), bjambase )],
+ [0,"mkdir -p %s/bin/" % PREFIX, os.path.join(os.getcwd(), bjambase )],
+ [0,cp + " bjam %s/bin/" % PREFIX, os.path.join(os.getcwd(), bjambase, bjambuilddir )], ## may need to change on 64 bit systems
- [0,cp + " bjam %s/bin" % PREFIX, os.path.join(os.getcwd(), bjambase, bjambuilddir )], ## may need to change on 64 bit systems
-
## and now boost
[0, tar + ' zxf ' + os.path.join(downloadPath, base) + '.tar.gz', ''],
[0,'chmod -R +rw *', os.path.join(os.getcwd(), base ) ],
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|