diff more/cronjob.sh @ 1461:ad5303b6d35a

Switch USE_UNSTABLE to USE_ALT and download.sh's UNSTABLE= to ALT= so naming is consistent with the alt- prefixes on packages and patches.
author Rob Landley <rob@landley.net>
date Thu, 20 Oct 2011 02:07:10 -0500
parents 6ea45e5e39f5
children
line wrap: on
line diff
--- a/more/cronjob.sh	Thu Oct 20 02:05:11 2011 -0500
+++ b/more/cronjob.sh	Thu Oct 20 02:07:10 2011 -0500
@@ -41,17 +41,17 @@
 
 build_snapshot()
 {
-  if [ -z "$USE_UNSTABLE" ]
+  if [ -z "$USE_ALT" ]
   then
     SNAPNAME=base
   else
-    pull_repo $USE_UNSTABLE
-    SNAPNAME=$USE_UNSTABLE
+    pull_repo $USE_ALT
+    SNAPNAME=$USE_ALT
   fi
 
   echo === Building snapshot $SNAPNAME
 
-  [ "$USE_UNSTABLE" == linux ] &&
+  [ "$USE_ALT" == linux ] &&
     more/for-each-arch.sh 'more/migrate-kernel.sh $TARGET'
 
   # Update manifest
@@ -94,6 +94,6 @@
   PATH="$QPATH:$PATH" more/for-each-target.sh \
     'more/smoketest.sh $TARGET | tee snapshots/$SNAPSHOT_DATE/base/logs/newqemu-smoketest-$TARGET.txt'
 
-#USE_UNSTABLE=linux build_snapshot
-#USE_UNSTABLE=uClibc build_snapshot
-#USE_UNSTABLE=busybox build_snapshot
+#USE_ALT=linux build_snapshot
+#USE_ALT=uClibc build_snapshot
+#USE_ALT=busybox build_snapshot