1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-01-09 04:57:59 -05:00

It appears I misunderstood what this bash-ism did

This commit is contained in:
Aaron Griffin 2007-02-01 02:34:03 +00:00
parent a2bd6d105c
commit 16e01cfe73

View File

@ -927,7 +927,7 @@ msg "Compressing package..."
cd "$startdir/pkg"
pkg_file="$PKGDEST/$pkgname-$pkgver-$pkgrel-${CARCH}.${PKGEXT}"
comp_files=".PKGINFO .FILELIST .INSTALL"
comp_files=".PKGINFO .FILELIST ${install:+.INSTALL}"
[ $have_changelog -eq 1 ] && comp_files=".CHANGELOG $comp_files"
if ! tar czf $pkg_file $comp_files *; then