Exclude virtuals from the package list file

There's really no point in showing the virtuals.
This commit is contained in:
Albert Hopkins 2015-09-03 14:11:01 +00:00
parent 0c19fb8470
commit 6ffc462188
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ ifneq ($(PKGLIST),0)
echo \# Gentoo Virtual Appliance \"$(APPLIANCE)\" package list >> $(LST_FILE) echo \# Gentoo Virtual Appliance \"$(APPLIANCE)\" package list >> $(LST_FILE)
echo \# Generated `date -u` >> $(LST_FILE) echo \# Generated `date -u` >> $(LST_FILE)
echo \# >> $(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 endif
touch $(SOFTWARE) touch $(SOFTWARE)