diff options
author | Daniel Baumann <daniel@debian.org> | 2008-11-01 14:57:17 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:43 +0100 |
commit | 3ff1c8050b9e32837fcaad6fbc4e9981f9cbdffd (patch) | |
tree | 91f2b97d1a78d65fa052c1a051c541f8b1ccd877 /helpers | |
parent | 137f573c859d7b60192fbee65a418cf6c75acca2 (diff) | |
download | vyos-live-build-3ff1c8050b9e32837fcaad6fbc4e9981f9cbdffd.tar.gz vyos-live-build-3ff1c8050b9e32837fcaad6fbc4e9981f9cbdffd.zip |
Generalizing internal LH_DEBUG variable.
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_debian-installer | 2 | ||||
-rwxr-xr-x | helpers/lh_bootstrap_cdebootstrap | 2 | ||||
-rwxr-xr-x | helpers/lh_config | 13 |
3 files changed, 6 insertions, 11 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 3ab6252ae..cac39c68b 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -28,7 +28,7 @@ Arguments "${@}" Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source Set_defaults -if [ "${LH_DEBUG}" = "enabled" ] +if [ "${_DEBUG}" = "enabled" ] then WGET_OPTIONS="${WGET_OPTIONS} --verbose" elif [ "${LH_QUIET}" = "enabled" ] diff --git a/helpers/lh_bootstrap_cdebootstrap b/helpers/lh_bootstrap_cdebootstrap index 7b260b16c..c2ab3f3fe 100755 --- a/helpers/lh_bootstrap_cdebootstrap +++ b/helpers/lh_bootstrap_cdebootstrap @@ -104,7 +104,7 @@ else esac fi -if [ "${LH_DEBUG}" = "enabled" ] +if [ "${_DEBUG}" = "enabled" ] then CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --debug" fi diff --git a/helpers/lh_config b/helpers/lh_config index 492622b22..31f98342d 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -322,11 +322,6 @@ Local_arguments () shift ;; - --debug) - LH_DEBUG="enabled" - shift - ;; - --quiet) LH_QUIET="enabled" shift @@ -668,7 +663,7 @@ Local_arguments () ;; --debug) - LH_DEBUG="enabled" + _DEBUG="enabled" shift ;; @@ -853,9 +848,9 @@ LH_TEMPLATES="${LH_TEMPLATES}" # (Default: ${LH_BREAKPOINTS}) #LH_BREAKPOINTS="${LH_BREAKPOINTS}" -# \$LH_DEBUG: enable debug -# (Default: ${LH_DEBUG}) -#LH_DEBUG="${LH_DEBUG}" +# \$_DEBUG: enable debug +# (Default: ${_DEBUG}) +#_DEBUG="${_DEBUG}" # \$_FORCE: enable force # (Default: ${_FORCE}) |