1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-22 15:58:50 -05:00

install scriptlet is _always_ .INSTALL

This commit is contained in:
Aaron Griffin 2007-02-01 02:02:45 +00:00
parent 010f35f299
commit 4b977d1f2e

View File

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