diff options
author | Daniel Baumann <daniel@debian.org> | 2012-08-27 15:16:09 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-08-27 15:16:09 +0200 |
commit | b6da4aec0426e111f06b2693c292cc57cc8c9e5a (patch) | |
tree | 3bc1483c2bcc2b32fa6ff4d83a6b1066c43f7600 /scripts | |
parent | d0561821e401346fe29d56e1264c235fed77ae87 (diff) | |
download | vyos-live-build-b6da4aec0426e111f06b2693c292cc57cc8c9e5a.tar.gz vyos-live-build-b6da4aec0426e111f06b2693c292cc57cc8c9e5a.zip |
Removing old LB= hack when wrapper was not mandatory.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/lb_clean | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/build/lb_clean b/scripts/build/lb_clean index 131304177..10450644d 100755 --- a/scripts/build/lb_clean +++ b/scripts/build/lb_clean @@ -57,10 +57,10 @@ for ARGUMENT in ${ARGUMENTS} do case "${ARGUMENT}" in --all) - LB=1 "${0}" noauto --chroot - LB=1 "${0}" noauto --binary - LB=1 "${0}" noauto --stage - LB=1 "${0}" noauto --source + "${0}" noauto --chroot + "${0}" noauto --binary + "${0}" noauto --stage + "${0}" noauto --source rmdir --ignore-fail-on-non-empty auto > /dev/null 2>&1 || true ;; @@ -109,13 +109,13 @@ do ;; --remove) - LB=1 "${0}" --all + "${0}" --all rm -rf cache/packages.* ;; --purge) - LB=1 "${0}" --all - LB=1 "${0}" --cache + "${0}" --all + "${0}" --cache if [ -e auto/config ] then |