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

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Mon, 30 May 2011 15:58:44 +0200

Author: biurrun
Date: Mon May 30 15:58:41 2011
New Revision: 2601

Log:
autobuild: Ensure that check_dist_tarball() runs quiet by default.

Modified:
   trunk/tools/pisa_autobuild.sh

Modified: trunk/tools/pisa_autobuild.sh
==============================================================================
--- trunk/tools/pisa_autobuild.sh       Mon May 30 15:32:28 2011        (r2600)
+++ trunk/tools/pisa_autobuild.sh       Mon May 30 15:58:41 2011        (r2601)
@@ -67,7 +67,7 @@
 {
     find -L . | sed -e 1d -e 's:./::' -e '/\.svn/d' -e '/autom4te.cache/d' -e 
'/file_list_checkout/d' |
         sort > file_list_checkout
-    ./configure && make dist
+    ./configure -q && make dist > /dev/null
     tar -tzf pisa-*.tar.gz |
         sed -e 1d -e 's:pisa-[0-9.]*/::' -e 's:/$::' -e 
'/file_list_checkout/d' -e '/version.h/d' |
         sort > file_list_tarball
-- 
This is the pisa developer mailing list. Please also subscribe to the main pisa 
list at:
//www.freelists.org/list/pisa

Other related posts:

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