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

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Mon, 29 Mar 2010 21:47:49 +0200

Author: biurrun
Date: Mon Mar 29 21:47:47 2010
New Revision: 2225

Log:
Run distcheck separately and only once.
configure parameters are not used by distcheck, it makes no sense to repeat it.

Modified:
   trunk/tools/pisa_autobuild.sh

Modified: trunk/tools/pisa_autobuild.sh
==============================================================================
--- trunk/tools/pisa_autobuild.sh       Mon Mar 29 15:59:36 2010        (r2224)
+++ trunk/tools/pisa_autobuild.sh       Mon Mar 29 21:47:47 2010        (r2225)
@@ -68,7 +68,6 @@
         run_program "./configure" $CONFIGURATION &&
         run_program "make -j17" &&
         run_program "make -j17 checkheaders" &&
-        run_program "make -j17 distcheck" &&
         run_program "make install"
 }
 
@@ -80,6 +79,7 @@
 
 # Compile PISA in different configurations
 compile vanilla
+run_program "make -j17 distcheck"
 compile fullfeatured --disable-debug --enable-logging --enable-performance
 
 # Compile PISA within an OpenWrt checkout

Other related posts:

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