summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 20:58:55 +0200
committerMoritz Bunkus2017-09-28 20:58:55 +0200
commit750e03eb26889602740df9ff07221cf9b1e6e0e1 (patch)
tree7a8dd3b4f492d1e8d6b397d308c508c35e0aab63
parent484157633dca376ae8b65d0eef50571206f4c5e1 (diff)
downloadaur-750e03eb26889602740df9ff07221cf9b1e6e0e1.tar.gz
fix removal of .packlist and with that of empty directories
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 85c6bdc8d928..dfc6d9a272e5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Thu Sep 28 17:59:35 UTC 2017
+# Thu Sep 28 18:58:55 UTC 2017
pkgbase = perl-getopt-mixed
pkgdesc = Library for getopt processing with both long and short options
pkgver = 1.12
- pkgrel = 2
+ pkgrel = 3
url = http://search.cpan.org/~cjm/Getopt-Mixed/
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index ddc88e6a8601..7c9f2fc9af0d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=perl-getopt-mixed
pkgver=1.12
-pkgrel="2"
+pkgrel='3'
pkgdesc="Library for getopt processing with both long and short options"
arch=('any')
url="http://search.cpan.org/~cjm/Getopt-Mixed/"
@@ -37,7 +37,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: