diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/build/lb_binary | 7 | ||||
| -rwxr-xr-x | scripts/build/lb_bootstrap | 7 | ||||
| -rwxr-xr-x | scripts/build/lb_chroot | 7 | ||||
| -rwxr-xr-x | scripts/build/lb_source | 7 | 
4 files changed, 28 insertions, 0 deletions
| diff --git a/scripts/build/lb_binary b/scripts/build/lb_binary index d9cd28c38..8598e3ed6 100755 --- a/scripts/build/lb_binary +++ b/scripts/build/lb_binary @@ -13,6 +13,13 @@ set -e  # Including common functions  . "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +# Automatically populating config tree +if [ -x auto/config ] && [ ! -e .stage/config ] +then +	Echo_message "Automatically populating config tree." +	lb config +fi +  # Setting static variables  DESCRIPTION="$(Echo 'build binary images')"  HELP="" diff --git a/scripts/build/lb_bootstrap b/scripts/build/lb_bootstrap index 0bd258534..323960023 100755 --- a/scripts/build/lb_bootstrap +++ b/scripts/build/lb_bootstrap @@ -13,6 +13,13 @@ set -e  # Including common functions  . "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +# Automatically populating config tree +if [ -x auto/config ] && [ ! -e .stage/config ] +then +	Echo_message "Automatically populating config tree." +	lb config +fi +  # Setting static variables  DESCRIPTION="$(Echo 'bootstrap a Debian system')"  HELP="" diff --git a/scripts/build/lb_chroot b/scripts/build/lb_chroot index b5baef458..09e18757a 100755 --- a/scripts/build/lb_chroot +++ b/scripts/build/lb_chroot @@ -13,6 +13,13 @@ set -e  # Including common functions  . "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +# Automatically populating config tree +if [ -x auto/config ] && [ ! -e .stage/config ] +then +	Echo_message "Automatically populating config tree." +	lb config +fi +  # Setting static variables  DESCRIPTION="$(Echo 'customize the Debian system')"  HELP="" diff --git a/scripts/build/lb_source b/scripts/build/lb_source index 00d2ce713..e790223f7 100755 --- a/scripts/build/lb_source +++ b/scripts/build/lb_source @@ -13,6 +13,13 @@ set -e  # Including common functions  . "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +# Automatically populating config tree +if [ -x auto/config ] && [ ! -e .stage/config ] +then +	Echo_message "Automatically populating config tree." +	lb config +fi +  # Setting static variables  DESCRIPTION="$(Echo 'build source images')"  HELP="" | 
