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 ;;