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 | |
parent | 2ca255d617118e749c51584c30027d9791c789e8 (diff) |
*-template.SlackBuild: Fix "find -L ." usage
Thanks to willysr for pointing out my thinko.
-rw-r--r-- | autotools-template.SlackBuild | 2 | ||||
-rw-r--r-- | cmake-template.SlackBuild | 2 | ||||
-rw-r--r-- | perl-template.SlackBuild | 2 | ||||
-rw-r--r-- | python-template.SlackBuild | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/autotools-template.SlackBuild b/autotools-template.SlackBuild index 2e8bd28..0a35749 100644 --- a/autotools-template.SlackBuild +++ b/autotools-template.SlackBuild @@ -94,7 +94,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 \ diff --git a/cmake-template.SlackBuild b/cmake-template.SlackBuild index d283016..a42beec 100644 --- a/cmake-template.SlackBuild +++ b/cmake-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 \ 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 \ 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 \ |