diff options
author | Daniel Baumann <daniel@debian.org> | 2008-11-02 17:22:56 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:44 +0100 |
commit | 22a06c656686d64a8624b3c07210583c3f764cbe (patch) | |
tree | c6a43cbd613197cb8bc828796bb7e62acfc714f6 /helpers/lh_config | |
parent | 2b5f0a7a071fbc50d82246194bce2ab118f114a0 (diff) | |
download | vyos-live-build-22a06c656686d64a8624b3c07210583c3f764cbe.tar.gz vyos-live-build-22a06c656686d64a8624b3c07210583c3f764cbe.zip |
Generalizing internal LH_CONFFILE variable.
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index 557f2bf19..1a9c6152c 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -643,7 +643,7 @@ Local_arguments () ;; -c|--conffile) - LH_CONFFILE="${2}" + _CONFFILE="${2}" shift 2 ;; @@ -716,9 +716,9 @@ Read_conffiles config/all config/common config/bootstrap config/chroot config/bi Local_arguments "${@}" -if [ -n "${LH_CONFFILE}" ] +if [ -n "${_CONFFILE}" ] then - Read_conffiles "${LH_CONFFILE}" + Read_conffiles "${_CONFFILE}" fi # Setting defaults |