diff options
author | Daniel Baumann <daniel@debian.org> | 2010-11-22 20:30:09 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:28 +0100 |
commit | 61efbfcd8f7115d61faca3c63012585c61c33b97 (patch) | |
tree | cbbbae1fa3635dbc5f465d9f869634b7d2d96f73 /scripts | |
parent | a71d06e0726f3c2de69af36d03b11bbce5460927 (diff) | |
download | vyos-live-build-61efbfcd8f7115d61faca3c63012585c61c33b97.tar.gz vyos-live-build-61efbfcd8f7115d61faca3c63012585c61c33b97.zip |
Correcting quoting of auto calls, thanks to Andreas Loibl <andreas@andreas-loibl.de>.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/lb_build | 2 | ||||
-rwxr-xr-x | scripts/build/lb_clean | 2 | ||||
-rwxr-xr-x | scripts/build/lb_config | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build/lb_build b/scripts/build/lb_build index 332ca5576..f87a2f87f 100755 --- a/scripts/build/lb_build +++ b/scripts/build/lb_build @@ -24,7 +24,7 @@ fi if [ "${1}" != "noauto" ] && [ -x auto/build ] then Echo_message "Executing auto/build script." - ./auto/build ${@} + ./auto/build "${@}" exit ${?} fi diff --git a/scripts/build/lb_clean b/scripts/build/lb_clean index f0e43a54b..814a844b9 100755 --- a/scripts/build/lb_clean +++ b/scripts/build/lb_clean @@ -17,7 +17,7 @@ set -e if [ "${1}" != "noauto" ] && [ -x auto/clean ] then Echo_message "Executing auto/clean script." - ./auto/clean ${@} + ./auto/clean "${@}" exit ${?} fi diff --git a/scripts/build/lb_config b/scripts/build/lb_config index bd6bd8d00..0e3d9818c 100755 --- a/scripts/build/lb_config +++ b/scripts/build/lb_config @@ -17,7 +17,7 @@ set -e if [ "${1}" != "noauto" ] && [ -x auto/config ] then Echo_message "Executing auto/config script." - ./auto/config ${@} + ./auto/config "${@}" exit ${?} fi |