diff options
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index c56f4539f..2c20d30d8 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -714,7 +714,12 @@ fi # Reading existing configuration Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source -Local_arguments "${@}" +if [ -e config.cfg ] +then + Local_arguments $(cat config.cfg) "${@}" +else + Local_arguments "${@}" +fi if [ -n "${_CONFFILE}" ] then |