From: Michael Prokop Date: Wed, 26 Aug 2009 21:23:27 +0000 (+0200) Subject: Fix usage of exclude option in $SQUASHFS_OPTIONS X-Git-Tag: v0.9.22~18 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=7a7c827da3eafc82550bc9471e736c4a4ab6eac7 Fix usage of exclude option in $SQUASHFS_OPTIONS --- diff --git a/debian/changelog b/debian/changelog index f948829..185d4df 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,8 +11,9 @@ grml-live (0.9.22) UNRELEASED; urgency=low as check whether the chroot exists. If grml-live execution itself succeded but was interrupted during task_configure it should be fine to re-run grml-live with -u/-b options. + * Fix usage of exclude option in $SQUASHFS_OPTIONS. - -- Michael Prokop Wed, 26 Aug 2009 23:06:53 +0200 + -- Michael Prokop Wed, 26 Aug 2009 23:23:00 +0200 grml-live (0.9.21) unstable; urgency=low diff --git a/grml-live b/grml-live index e2dd602..f5cafd8 100755 --- a/grml-live +++ b/grml-live @@ -864,7 +864,7 @@ else # get rid of unnecessary files when building grml-small for final release: if echo "$CLASSES" | grep -q GRML_SMALL ; then - SQUASHFS_OPTIONS="$SQUASHFS_OUTPUT -e initrd.img* vmlinuz*" + SQUASHFS_OPTIONS="$SQUASHFS_OPTIONS -e initrd.img* vmlinuz*" fi SQUASHFS_OUTPUT="$(mktemp -t grml-live.XXXXXX)"