diff options
author | jnqnfe <jnqnfe@gmail.com> | 2014-12-10 07:58:02 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2014-12-10 07:58:02 +0100 |
commit | 0e9d949c3d9f2fffaabfa680f0100782bb442538 (patch) | |
tree | 8c60e9e785adcf9f7ec94ac4801ca700f0493590 /scripts | |
parent | 57dd8c6376e58cc08ddd6c041bd0fa2fdeae6c34 (diff) | |
download | vyos-live-build-0e9d949c3d9f2fffaabfa680f0100782bb442538.tar.gz vyos-live-build-0e9d949c3d9f2fffaabfa680f0100782bb442538.zip |
Fix typo in variable name (LH_LINUX_FLAVOURS instead of LB_LINUX_FLAVOURS) in installer_debian-installer script, affecting the armel architecture (Closes: #770796).
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/installer_debian-installer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer index 945f5538e..5f6b3ca1d 100755 --- a/scripts/build/installer_debian-installer +++ b/scripts/build/installer_debian-installer @@ -109,7 +109,7 @@ esac # Set architecture-specific variables case "${LB_ARCHITECTURES}" in armel) - DEFAULT_FLAVOUR="$(echo ${LH_LINUX_FLAVOURS} | awk '{ print $1 }')" + DEFAULT_FLAVOUR="$(echo ${LB_LINUX_FLAVOURS} | awk '{ print $1 }')" case "${DI_IMAGE_TYPE}" in cdrom) DI_REMOTE_BASE="${DEFAULT_FLAVOUR}/cdrom" |