diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2013-11-22 17:10:09 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2013-11-22 17:10:09 +0700 |
commit | 06935347d7618aaf5bb1f0e28d4589dee05219cf (patch) | |
tree | 6e8d34b2418a2d279da55db9cf6f0dedeb394703 | |
parent | ecd2ac561a03185de49bf806e252850ae69ff68e (diff) | |
download | slackbuilds-06935347d7618aaf5bb1f0e28d4589dee05219cf.tar.gz |
network/mod_auth_kerb: Script cleanup to match new template
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/mod_auth_kerb/mod_auth_kerb.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/network/mod_auth_kerb/mod_auth_kerb.SlackBuild b/network/mod_auth_kerb/mod_auth_kerb.SlackBuild index 0e0e9c75c2..a2132612e8 100644 --- a/network/mod_auth_kerb/mod_auth_kerb.SlackBuild +++ b/network/mod_auth_kerb/mod_auth_kerb.SlackBuild @@ -64,10 +64,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -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 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; # Fix compilation with httpd-2.4 patch -p0 < $CWD/mod_auth_kerb.c.patch |