diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2010-07-03 14:11:27 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2010-07-03 14:11:27 -0400 |
commit | 662df972b84894fb294b418d7b4cb2e7afff90eb (patch) | |
tree | e531ed95f753b54d4e9533061ff1b38136081ad8 | |
parent | e914440e0a2f6f2dcab0affb9c4eee425ce67e2c (diff) |
Minor clean up.
-rw-r--r-- | perl-template.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-template.SlackBuild b/perl-template.SlackBuild index 33da21b..4668b83 100644 --- a/perl-template.SlackBuild +++ b/perl-template.SlackBuild @@ -116,7 +116,7 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r # Remove perllocal.pod and other special files that don't need to be installed, # as they will overwrite what's already on the system. -find $PKG -name "perllocal.pod" -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true +find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true # Remove empty directories find $PKG -depth -type d -empty -delete || true |