diff options
Diffstat (limited to 'source/d/subversion/subversion.SlackBuild')
-rwxr-xr-x | source/d/subversion/subversion.SlackBuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source/d/subversion/subversion.SlackBuild b/source/d/subversion/subversion.SlackBuild index 6ea1cb92..5d0bb653 100755 --- a/source/d/subversion/subversion.SlackBuild +++ b/source/d/subversion/subversion.SlackBuild @@ -74,9 +74,9 @@ cd subversion-$VERSION || exit 1 chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + -exec chmod 644 {} \+ if [ "$VERSION" = "1.12.0" ]; then # Workaround for building with apr-1.7.0: @@ -163,14 +163,14 @@ rm -rf $PKG/usr/doc/subversion-$VERSION/doc/tools mv svn-book-html book cd book chown -R root:root . - find . -type d -exec chmod 0755 {} \; - find . -type f -exec chmod 0644 {} \; - find . -perm 2755 -exec chmod 0755 {} \; + find . -type d -exec chmod 0755 {} \+ + find . -type f -exec chmod 0644 {} \+ + find . -perm 2755 -exec chmod 0755 {} \+ find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + -exec chmod 644 {} \+ ) # If there's a CHANGES file, installing at least part of the recent history |