From dc1ab10bb4f507f2f1463d934ac07973336201a6 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Thu, 23 Aug 2012 09:44:35 +0100 Subject: [PATCH] live-build/auto/config: Don't try to install an empty task name when building an image without a live task. --- debian/changelog | 7 +++++++ live-build/auto/config | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 7e144841..8a0a10ef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (2.76) UNRELEASED; urgency=low + + * live-build/auto/config: Don't try to install an empty task name when + building an image without a live task. + + -- Colin Watson Thu, 23 Aug 2012 09:43:38 +0100 + livecd-rootfs (2.75) quantal; urgency=low * Adjust for live-build interface changes up to 3.0~a57-1ubuntu1. diff --git a/live-build/auto/config b/live-build/auto/config index 041bed3d..d7ad5f0b 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -229,7 +229,7 @@ case $PROJECT in ;; esac -if [ "$PREINSTALLED" != "true" ]; then +if [ "$PREINSTALLED" != "true" ] && [ "$LIVE_TASK" ]; then add_task live "$LIVE_TASK" fi