summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 20:57:18 +0200
committerMoritz Bunkus2017-09-28 20:57:18 +0200
commitc30a324c0de8b75bd34413c0c73a69eaa3c887a7 (patch)
tree3b63b4464442fb5b3b6f018b191d86bd1ffe54e9 /PKGBUILD
parent3ed73cfefc165cf4b8dd7b0a1093791da9b9c91f (diff)
downloadaur-c30a324c0de8b75bd34413c0c73a69eaa3c887a7.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 b94c2df075de..bb5c3d74d870 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Moritz Bunkus <moritz@bunkus.org>
pkgname='perl-dbix-class'
pkgver='0.082840'
-pkgrel='1'
+pkgrel='2'
pkgdesc="Extensible and flexible object <-> relational mapper."
arch=('any')
license=('PerlArtistic' 'GPL')
@@ -64,7 +64,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: