diff options
author | Daniel Baumann <daniel@debian.org> | 2011-03-12 13:45:42 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-12 13:45:42 +0100 |
commit | 5ee20800049808498d0e5550d2842bfac5ccd25c (patch) | |
tree | e01d651fd3eb2009e569f31e675cc3898940d750 | |
parent | 16be875db2f98b396b843b5d5ef6958857d838aa (diff) | |
download | live-build-5ee20800049808498d0e5550d2842bfac5ccd25c.zip live-build-5ee20800049808498d0e5550d2842bfac5ccd25c.tar.gz |
Correcting variables names for standard and rescue package lists and tasks automagics for default flavours.
-rwxr-xr-x | functions/defaults.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 23842fd..47dbe3c 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -720,12 +720,12 @@ Set_defaults () ;; standard) - LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|standard||') standard" + LB_PACKAGES_LISTS="$(echo ${LB_PACKAGES_LISTS} | sed -e 's|standard||') standard" LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||') standard" ;; rescue) - LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|standard||' -e 's|rescue||') standard rescue" + LB_PACKAGES_LISTS="$(echo ${LB_PACKAGES_LISTS} | sed -e 's|standard||' -e 's|rescue||') standard rescue" LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|rescue||') standard rescue" ;; |