summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 20:58:42 +0200
committerMoritz Bunkus2017-09-28 20:58:42 +0200
commitc9f620f8c4c883f5a1521b85e1a9e3e8b5bb2c2f (patch)
tree4368cdecfea08333c8451cd24cdeae837867fed4 /PKGBUILD
parentdec8b6210919742ce1a44e6ea1a8a8e49f32b354 (diff)
downloadaur-c9f620f8c4c883f5a1521b85e1a9e3e8b5bb2c2f.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 7f81b8ffbd96..2b458b18311a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=perl-file-flock
pkgver='2014.01'
-pkgrel='1'
+pkgrel='2'
pkgdesc="file locking with flock"
arch=('any')
url="http://search.cpan.org/dist/File-Flock"
@@ -41,7 +41,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: