Browse Source

build.sh: update behavior of CLEAN

Karsten Böddeker 7 years ago
parent
commit
a48f8ab2c1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      build.sh

+ 2 - 2
build.sh

@@ -12,7 +12,7 @@
 # AUTOUPDATER = force Autoupdater Branch (stable/testing/experimental/off)
 # BROKEN      = 0 (default) or 1, build the untested hardware model firmwares, too
 # BUILD_TS    = build timestamp (format: %Y-%m-%d %H:%M:%S)
-# CLEAN       = DIRCLEAN perform "make dirclean" before build (BRANCH==stable/testing) or CLEAN perform "make clean" or NONE (BRANCH==experimental)
+# CLEAN       = 'dirclean' to perform "make dirclean" before build or 'clean' to perform "make clean" (BRANCH==stable/testing) or 'none' (BRANCH==experimental)
 # KEY_DIR     = specify directory for gluon-opkg-key
 # MAKEJOBS    = number of compiler processes running in parallel (default: number of CPUs/Cores)
 # PRIORITY    = determines the number of day a rollout phase should last at most
@@ -72,7 +72,7 @@ if [ -z "${CLEAN}" ]; then
 	if [ "${BRANCH}" == "experimental" ]; then
 		CLEAN="none"
 	else
-		CLEAN="dirclean"
+		CLEAN="clean"
 	fi
 fi