diff options
author | Daniel Baumann <daniel@debian.org> | 2010-02-17 16:11:50 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:04 +0100 |
commit | 5e3b3693ea5307f4019cd12e64a5835658e00e82 (patch) | |
tree | c3a513644b338811beecaaa473c499dc58663c2f /helpers | |
parent | 67af4a1ce98acf4de7b71b7c0e11091b9826abeb (diff) | |
download | live-build-5e3b3693ea5307f4019cd12e64a5835658e00e82.zip live-build-5e3b3693ea5307f4019cd12e64a5835658e00e82.tar.gz |
Automatically populating config tree when having auto/config present and lh build is called without having lh config run before.
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/helpers/build b/helpers/build index 835ad8e..52400fa 100755 --- a/helpers/build +++ b/helpers/build @@ -12,6 +12,13 @@ set -e # Including common functions . "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh +# Automatically populating config tree +if [ -x auto/config ] && [ ! -e .stage/config ] +then + Echo_message "Automatically populating config tree." + lh config +fi + # Read meta config if [ "${1}" != "noautoconfig" ] && [ -x auto/build ] then |