[hipl-commit] [trunk] Rev 4115: autobuild: Run autoreconf only once to bootstrap the autotools build system.

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Tue, 30 Mar 2010 21:06:10 +0300

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: 30/03/2010 at 21:06:10
Revision: 4115
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

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

Modified:
  M  tools/hipl_autobuild.sh

=== modified file 'tools/hipl_autobuild.sh'
--- tools/hipl_autobuild.sh     2010-03-30 14:39:09 +0000
+++ tools/hipl_autobuild.sh     2010-03-30 18:05:50 +0000
@@ -65,8 +65,7 @@
 compile()
 {
     CONFIGURATION="--prefix=$(pwd)/local_install $@"
-    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"
@@ -78,6 +77,9 @@
 
 cd "$CHECKOUT_DIR" || cleanup 1
 
+# Bootstrap the autotools build system.
+run_program autoreconf --install
+
 # Compile HIPL in different configurations
 # vanilla configuration
 compile

Other related posts:

  • » [hipl-commit] [trunk] Rev 4115: autobuild: Run autoreconf only once to bootstrap the autotools build system. - Diego Biurrun