Revision: 489
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=489&view=rev
Author: andy_miller
Date: 2007-12-04 05:23:43 -0800 (Tue, 04 Dec 2007)
Log Message:
-----------
Change build to call scons seperately for each module as there is a bug in scons where it uses the command line
as it's detection for a rebuild which was causing excess building
Modified Paths:
--------------
trunk/python-ogre/scripts/07-BuildModules.sh
Modified: trunk/python-ogre/scripts/07-BuildModules.sh
===================================================================
--- trunk/python-ogre/scripts/07-BuildModules.sh 2007-12-04 07:49:39 UTC (rev 488)
+++ trunk/python-ogre/scripts/07-BuildModules.sh 2007-12-04 13:23:43 UTC (rev 489)
@@ -12,7 +12,8 @@
then
scons PROJECTS=$1
else
- scons PROJECTS=ogre,ois,caelum,cegui,plib,ogrenewt,ogreode,quickgui,et,bullet,ogreforests -i
+ for PROJ in ogre ois cegui quickgui; do scons PROJECTS=$PROJ ; done ;
+ for PROJ in plib ogrenewt ogreode caelum et ogreforests bullet ogrebulletc ogrebulletd ; do scons PROJECTS=$PROJ ; done ;
#ogreal,ogrebulletc,ogrebulletd,nxogre -i
fi
#opcode -- not really suited to a linux build -- lots of work needed ?
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|