diff options
author | Daniel Baumann <daniel@debian.org> | 2010-04-18 14:38:14 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:06 +0100 |
commit | 4aebed603317cf6012c92eb542ab9fa26b8fc3cc (patch) | |
tree | 0eff07f96afbbcc6fad3b8b4422bce97c96b2a34 /helpers/clean | |
parent | 7f5742f660c09ba88534f908f4bcee0c51d16ecf (diff) | |
download | live-build-4aebed603317cf6012c92eb542ab9fa26b8fc3cc.zip live-build-4aebed603317cf6012c92eb542ab9fa26b8fc3cc.tar.gz |
Replacing 'noautoconfig' string in auto/ scripts with 'noauto'.
Diffstat (limited to 'helpers/clean')
-rwxr-xr-x | helpers/clean | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/helpers/clean b/helpers/clean index 2348b0f..2b5dac6 100755 --- a/helpers/clean +++ b/helpers/clean @@ -10,12 +10,12 @@ set -e # Read meta config -if [ "${1}" != "noautoconfig" ] && [ -x auto/clean ] +if [ "${1}" != "noauto" ] && [ -x auto/clean ] then ./auto/clean ${@} fi -if [ "${1}" = "noautoconfig" ] +if [ "${1}" = "noauto" ] then shift fi @@ -54,10 +54,10 @@ for ARGUMENT in ${ARGUMENTS} do case "${ARGUMENT}" in --all) - LH=1 "${0}" noautoconfig --chroot - LH=1 "${0}" noautoconfig --binary - LH=1 "${0}" noautoconfig --stage - LH=1 "${0}" noautoconfig --source + LH=1 "${0}" noauto --chroot + LH=1 "${0}" noauto --binary + LH=1 "${0}" noauto --stage + LH=1 "${0}" noauto --source if [ -d auto ] then |