summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2007-02-01 03:34:03 +0100
committerAaron Griffin <aaron@archlinux.org>2007-02-01 03:34:03 +0100
commit16e01cfe736d348b4f8276f54ebe0efa020db058 (patch)
tree483b9bc1ee72f3f57ecc0cc96f98ecf20bb68820 /scripts
parenta2bd6d105ce944a6981d2f67fbca3f59ff0cbe0b (diff)
downloadpacman-16e01cfe736d348b4f8276f54ebe0efa020db058.tar.gz
pacman-16e01cfe736d348b4f8276f54ebe0efa020db058.tar.xz
It appears I misunderstood what this bash-ism did
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/makepkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg b/scripts/makepkg
index 2d4510fd..4f021876 100755
--- a/scripts/makepkg
+++ b/scripts/makepkg
@@ -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