From 1c996273139e1d9b8b3fc6851737e2582e197ccb Mon Sep 17 00:00:00 2001 From: Adam Conrad Date: Tue, 24 Jul 2018 22:15:26 -0600 Subject: [PATCH] live-build/auto/config: Dirty hack to filter linux-tools-aws from budgie. --- debian/changelog | 6 ++++++ live-build/auto/config | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 42b93b9e..9bc0c832 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (2.525.4) bionic; urgency=medium + + * live-build/auto/config: Dirty hack to filter linux-tools-aws from budgie. + + -- Adam Conrad Tue, 24 Jul 2018 21:55:49 -0600 + livecd-rootfs (2.525.3) bionic; urgency=medium * live-build/auto/config: Add nasty hack to order gtk-common-themese snap diff --git a/live-build/auto/config b/live-build/auto/config index 73baef97..795700e6 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -59,9 +59,14 @@ add_task () # failure. for task; do + if [ "$task" = "ubuntu-budgie-desktop" ]; then + filter="| grep -v '^linux.*-aws'" + else + filter="" + fi # We need a ridiculous number of backslashes to protect # parentheses from eval. - echo "!chroot chroot apt-cache dumpavail | grep-dctrl -nsPackage \\\\\\( -XFArchitecture $ARCH -o -XFArchitecture all \\\\\\) -a -wFTask $task" >> "config/package-lists/livecd-rootfs.list.chroot_$pass" + echo "!chroot chroot apt-cache dumpavail | grep-dctrl -nsPackage \\\\\\( -XFArchitecture $ARCH -o -XFArchitecture all \\\\\\) -a -wFTask $task $filter" >> "config/package-lists/livecd-rootfs.list.chroot_$pass" done }