summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 21:02:29 +0200
committerMoritz Bunkus2017-09-28 21:02:29 +0200
commit1b5ea86ce621ceec4a44c2155b3d957ebc342c31 (patch)
tree3cd3d2a4f09b3f93a9860cf45754d9fd8f426050 /PKGBUILD
parente31efb01b512693db7750d5bfb317899e97ce8bb (diff)
downloadaur-1b5ea86ce621ceec4a44c2155b3d957ebc342c31.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 6e15f7aae3e2..3938e89180a2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname='perl-sql-abstract'
pkgver='1.84'
-pkgrel='1'
+pkgrel='2'
pkgdesc="Generate SQL from Perl data structures"
arch=('any')
license=('PerlArtistic' 'GPL')
@@ -39,7 +39,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: