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

  • From: Rene Hummen <Rene.Hummen@xxxxxxxxxxxxxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Wed, 6 Apr 2011 11:21:31 +0200

Author: hummen
Date: Wed Apr  6 11:21:30 2011
New Revision: 2521

Log:
fix auto-builder for scratchbox

The path to scratchbox is SCRATCHBOX_DIR, not SCRATCHBOX.

Modified:
   trunk/tools/pisa_autobuild.sh

Modified: trunk/tools/pisa_autobuild.sh
==============================================================================
--- trunk/tools/pisa_autobuild.sh       Wed Apr  6 10:27:48 2011        (r2520)
+++ trunk/tools/pisa_autobuild.sh       Wed Apr  6 11:21:30 2011        (r2521)
@@ -132,7 +132,7 @@
 cd $SCRATCHBOX_HOME || cleanup 1
 run_program "rm -rf pisa-[0-9-]* pisa_*.changes pisa_*.deb"
 run_program "tar -xzf $CHECKOUT_DIR/pisa-[0-9-]*.tar.gz"
-run_program "$SCRATCHBOX/login -d pisa-[0-9-]* ./configure"
-run_program "$SCRATCHBOX/login -d pisa-[0-9-]* make deb"
+run_program "$SCRATCHBOX_DIR/login -d pisa-[0-9-]* ./configure"
+run_program "$SCRATCHBOX_DIR/login -d pisa-[0-9-]* make deb"
 
 cleanup 0
-- 
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] r2521 - trunk/tools/pisa_autobuild.sh - Rene Hummen