From 6ffc4621881894b45fe07c2348cf5c5eba560cdf Mon Sep 17 00:00:00 2001 From: Albert Hopkins Date: Thu, 3 Sep 2015 14:11:01 +0000 Subject: [PATCH] Exclude virtuals from the package list file There's really no point in showing the virtuals. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 775baae..f75959a 100644 --- a/Makefile +++ b/Makefile @@ -246,7 +246,7 @@ ifneq ($(PKGLIST),0) echo \# Gentoo Virtual Appliance \"$(APPLIANCE)\" package list >> $(LST_FILE) echo \# Generated `date -u` >> $(LST_FILE) echo \# >> $(LST_FILE) - (cd "$(CHROOT)"/var/db/pkg ; /bin/ls -1d */*) >> $(LST_FILE) + (cd "$(CHROOT)"/var/db/pkg ; /bin/ls -1d */* | grep -v '^virtual/') >> $(LST_FILE) endif touch $(SOFTWARE)