diff options
author | 2013-11-03 11:10:31 -0600 | |
---|---|---|
committer | 2013-11-03 11:10:31 -0600 | |
commit | 17f881f0a1afc53b19efeb4f33faf08cae655107 (patch) | |
tree | 959885415ed587819fef620d1faedff361cd473d /python-template.SlackBuild | |
parent | 2ca255d617118e749c51584c30027d9791c789e8 (diff) | |
download | templates-17f881f0a1afc53b19efeb4f33faf08cae655107.tar.gz templates-17f881f0a1afc53b19efeb4f33faf08cae655107.tar.xz |
*-template.SlackBuild: Fix "find -L ." usage
Thanks to willysr for pointing out my thinko.
Diffstat (limited to 'python-template.SlackBuild')
-rw-r--r-- | python-template.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python-template.SlackBuild b/python-template.SlackBuild index 5f99a6c..027346c 100644 --- a/python-template.SlackBuild +++ b/python-template.SlackBuild @@ -91,7 +91,7 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$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 \ |