summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 21:03:16 +0200
committerMoritz Bunkus2017-09-28 21:03:16 +0200
commit10a4b80c29f8d132e2463f32f0d784a820d6ade6 (patch)
treeb315a459a0c94d9b972ae7c212820c464c30cc1b /PKGBUILD
parentdd15128d635d8c12be1a6f514c145756c3439654 (diff)
downloadaur-10a4b80c29f8d132e2463f32f0d784a820d6ade6.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 9bc193c27cb5..522973fdf66c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=perl-rose-datetime
pkgver=0.540
-pkgrel="2"
+pkgrel='3'
pkgdesc="DateTime helper functions and objects"
arch=(any)
license=('PerlArtistic')
@@ -38,7 +38,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: