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

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Wed, 12 May 2010 18:13:23 +0200

Author: biurrun
Date: Wed May 12 18:13:22 2010
New Revision: 2328

Log:
autobuild: Make sure that the USER environment variable is set.

Modified:
   trunk/tools/pisa_autobuild.sh

Modified: trunk/tools/pisa_autobuild.sh
==============================================================================
--- trunk/tools/pisa_autobuild.sh       Wed May 12 14:58:05 2010        (r2327)
+++ trunk/tools/pisa_autobuild.sh       Wed May 12 18:13:22 2010        (r2328)
@@ -122,7 +122,12 @@
 run_program "make -j17 package/pisa-clean V=99"
 run_program "make -j17 package/pisa-install V=99"
 
+
 # Crosscompile PISA in a scratchbox environment.
+
+# scratchbox complains if USER is missing from the environment
+USER=$LOGNAME
+
 CONFIGURATION="Scratchbox ARM crosscompile"
 cd $SCRATCHBOX_HOME || cleanup 1
 run_program "rm -rf pisa-[0-9-]* pisa_*.changes pisa_*.deb"

Other related posts:

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