[pisa-src] r2230 - trunk/tools/pisa_autobuild.sh

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Tue, 30 Mar 2010 20:02:57 +0200

Author: biurrun
Date: Tue Mar 30 20:02:57 2010
New Revision: 2230

Log:
Run autoreconf only once to bootstrap the build system.

Modified:
   trunk/tools/pisa_autobuild.sh

Modified: trunk/tools/pisa_autobuild.sh
==============================================================================
--- trunk/tools/pisa_autobuild.sh       Tue Mar 30 19:21:52 2010        (r2229)
+++ trunk/tools/pisa_autobuild.sh       Tue Mar 30 20:02:57 2010        (r2230)
@@ -64,8 +64,7 @@
     INSTALL_DIR=${PROJECT_BIN_DIR}/r${PISA_HEAD_REVISION}/$1
     shift
     CONFIGURATION="--prefix=$INSTALL_DIR $@"
-    run_program autoreconf --install &&
-        run_program "./configure" $CONFIGURATION &&
+    run_program "./configure" $CONFIGURATION &&
         run_program "make -j17" &&
         run_program "make -j17 checkheaders" &&
         run_program "make install"
@@ -77,6 +76,9 @@
 
 cd "$CHECKOUT_DIR" || cleanup 1
 
+# Bootstrap the autotools build system.
+run_program autoreconf --install
+
 # Compile PISA in different configurations
 compile vanilla
 run_program "make -j17 distcheck"

Other related posts:

  • » [pisa-src] r2230 - trunk/tools/pisa_autobuild.sh - Diego Biurrun