summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 20:59:06 +0200
committerMoritz Bunkus2017-09-28 20:59:06 +0200
commit36cada9050d87dffe6012ef26200fddc0151998e (patch)
tree2efac31e8757e584c345875062e2290498bb5f0d /PKGBUILD
parente979c405e99768c1d002b14bd95ee21c46237832 (diff)
downloadaur-36cada9050d87dffe6012ef26200fddc0151998e.tar.gz
fix removal of .packlist and with that of empty directories
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index b942a316b523..eaf6cb5efd80 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname="perl-gd-barcode"
pkgver="1.15"
-pkgrel="1"
+pkgrel='2'
pkgdesc="Create barcode image with GD"
arch=('any')
url="http://search.cpan.org/dist/GD-Barcode"
@@ -35,7 +35,7 @@ check() {
package() {
prepare_environment
make install
- find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+ find "$pkgdir" "(" -name .packlist -o -name perllocal.pod ")" -delete
}
# Local Variables: