Revision: 644
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=644&view=rev
Author: mithro
Date: 2008-07-15 06:10:54 -0700 (Tue, 15 Jul 2008)
Log Message:
-----------
Fail hard on errors building the prereqs.
Modified Paths:
--------------
trunk/python-ogre/scripts/build-deb.sh
Modified: trunk/python-ogre/scripts/build-deb.sh
===================================================================
--- trunk/python-ogre/scripts/build-deb.sh 2008-07-15 12:54:48 UTC (rev 643)
+++ trunk/python-ogre/scripts/build-deb.sh 2008-07-15 13:10:54 UTC (rev 644)
@@ -39,24 +39,22 @@
# Things we need to build ourself
# The extra boost support module
-python python-ogre/BuildModule.py -r --build-deb boost_python_index || exit
+python python-ogre/BuildModule.py --failhard -r --build-deb boost_python_index || exit
sudo true
-python python-ogre/BuildModule.py --install-deb boost_python_index || exit
+python python-ogre/BuildModule.py --failhard --install-deb boost_python_index || exit
# The gccxml version is important to us (but only during build)
-python python-ogre/BuildModule.py -r --build-deb gccxml || exit
+python python-ogre/BuildModule.py --failhard -r --build-deb gccxml || exit
sudo true
-python python-ogre/BuildModule.py --install-deb gccxml || exit
+python python-ogre/BuildModule.py --failhard --install-deb gccxml || exit
# The pygccxml is dependent on the gccxml version we just built
-python python-ogre/BuildModule.py -r --build-deb pygccxml || exit
+python python-ogre/BuildModule.py --failhard -r --build-deb pygccxml || exit
sudo true
-python python-ogre/BuildModule.py --install-deb pygccxml || exit
+python python-ogre/BuildModule.py --failhard --install-deb pygccxml || exit
-#python python-ogre/BuildModule.py -r --build-deb boost || exit
-
# Build our custom extension to boost-indexing which pyplusplus needs
-python python-ogre/BuildModule.py -r --build-deb pyplusplus || exit
+python python-ogre/BuildModule.py --failhard -r --build-deb pyplusplus || exit
sudo true
-python python-ogre/BuildModule.py --install-deb pyplusplus || exit
+python python-ogre/BuildModule.py --failhard --install-deb pyplusplus || exit
# Generate the python-ogre package
cd python-ogre
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|