Package: live-build Version: 4.0.3-1 The attached patch (against debian-next) fixes a typo in a variable name (LH_LINUX_FLAVOURS instead of LB_LINUX_FLAVOURS) in the installer_debian-installer script, affecting armel architectures.
From fb96a18e2cb8ce38a12fccb15ca6f0a38fd34b7a Mon Sep 17 00:00:00 2001 From: jnqnfe <jnq...@gmail.com> Date: Mon, 24 Nov 2014 06:36:09 +0000 Subject: [PATCH] Fix typo in variable name (LH_LINUX_FLAVOURS instead of LB_LINUX_FLAVOURS) in installer_debian-installer script, affecting the armel architecture. --- scripts/build/installer_debian-installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer index 6415fff..c2d606f 100755 --- a/scripts/build/installer_debian-installer +++ b/scripts/build/installer_debian-installer @@ -109,7 +109,7 @@ esac # Set architecture-specific variables case "${LIVE_IMAGE_ARCHITECTURE}" 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" -- 1.9.4.msysgit.0