diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2008-07-14 00:21:34 +1000 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2008-07-14 00:21:34 +1000 |
commit | 4c951bd58d76612d99bbbadcf84d9500e5804795 (patch) | |
tree | 1aa3c8795dfd2af42b1d36580fa05be122a35108 /p5-date-manip | |
parent | 956968203c9032ffe800bc67bede27f3b65e0147 (diff) | |
download | contrib-4c951bd58d76612d99bbbadcf84d9500e5804795.tar.gz contrib-4c951bd58d76612d99bbbadcf84d9500e5804795.tar.xz |
p5-date-manip: clean Pkgfile
Diffstat (limited to 'p5-date-manip')
-rw-r--r-- | p5-date-manip/Pkgfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/p5-date-manip/Pkgfile b/p5-date-manip/Pkgfile index 03c2f2136..9799d7154 100644 --- a/p5-date-manip/Pkgfile +++ b/p5-date-manip/Pkgfile @@ -18,12 +18,12 @@ build() { # Remove perlcrap find $PKG -type f \( \ - -name '.packlist' -or \ - -name '*.bs' -or \ - -name 'autosplit.ix' -or \ + -name '.packlist' -o \ + -name '*.bs' -o \ + -name 'autosplit.ix' -o \ -name 'perllocal.pod' \) -delete # Remove empty directories - find $PKG -depth -empty -exec rm -rf {} \; + find $PKG -depth -empty -delete } |