summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 21:01:51 +0200
committerMoritz Bunkus2017-09-28 21:01:51 +0200
commite5864447fd2b87b3ca52f0018c82eacd0f1e7bd7 (patch)
tree1136297614a1f33ab1fcdd779606e011948a0f0d /PKGBUILD
parent7a5eef5edf5617824790f2e1aaa10fee7c4ac6c4 (diff)
downloadaur-e5864447fd2b87b3ca52f0018c82eacd0f1e7bd7.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 8e8d237ea176..bcc751887b44 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname="perl-encode-imaputf7"
pkgver="1.05"
-pkgrel="1"
+pkgrel='2'
pkgdesc="Modification of UTF-7 encoding for IMAP"
arch=('any')
url="http://search.cpan.org/dist/Encode-IMAPUTF7"
@@ -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: