From 650815889f8566aa51060750e8132fc7116d05e0 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Wed, 3 Jan 2024 23:38:50 -0800 Subject: [PATCH] Fix overlooked syntax error in live-build/auto/config. --- debian/changelog | 6 ++++++ live-build/auto/config | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 5472a9e3..bf5e831d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (24.04.16) UNRELEASED; urgency=medium + + * Fix overlooked syntax error in live-build/auto/config. + + -- Steve Langasek Wed, 03 Jan 2024 23:38:32 -0800 + livecd-rootfs (24.04.15) noble; urgency=medium * live-build/ubuntu/hooks/020-ubuntu-live.chroot_early: apply to any diff --git a/live-build/auto/config b/live-build/auto/config index 5ab86ae1..de3ca056 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -113,7 +113,7 @@ _register_pass () { # is not invalid to have multiple layers with .live in the name but # we should not let this happen accidentally. case "$PASSES $1" in - *.live *.live) + *.live\ *.live) echo "ERROR: only one 'live' layer allowed" exit 1 ;;