diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2013-11-03 11:10:31 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-03 11:10:31 -0600 |
commit | 17f881f0a1afc53b19efeb4f33faf08cae655107 (patch) | |
tree | 959885415ed587819fef620d1faedff361cd473d /perl-template.SlackBuild | |
parent | 2ca255d617118e749c51584c30027d9791c789e8 (diff) |
*-template.SlackBuild: Fix "find -L ." usage
Thanks to willysr for pointing out my thinko.
Diffstat (limited to 'perl-template.SlackBuild')
-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 4dd762c..446e094 100644 --- a/perl-template.SlackBuild +++ b/perl-template.SlackBuild @@ -93,7 +93,7 @@ rm -rf $SRCNAM-$VERSION tar xvf $CWD/$SRCNAM-$VERSION.tar.gz cd $SRCNAM-$VERSION chown -R root:root . -find . -L \ +find -L . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ |