From 36035832fb6b281b141c27f480ccced945dcc303 Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Fri, 13 Jun 2008 15:52:16 +0100 Subject: [PATCH] Don't exclude live-installer when LH_DEBIAN_INSTALLER=live Signed-off-by: Chris Lamb --- helpers/lh_binary_debian-installer | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 1fb91140f..e5d0bc1b3 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -392,6 +392,11 @@ then for EXCLUDE in $(cat exclude) do + if [ "${LH_DEBIAN_INSTALLER}" = "live" ] && [ "${EXCLUDE}" = "live-installer" ] + then + continue + fi + rm -f "${EXCLUDE}"_*.udeb done