diff options
Diffstat (limited to 'source/d/git/git.SlackBuild')
-rwxr-xr-x | source/d/git/git.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/d/git/git.SlackBuild b/source/d/git/git.SlackBuild index 37c2a1087..e0a481c1b 100755 --- a/source/d/git/git.SlackBuild +++ b/source/d/git/git.SlackBuild @@ -82,9 +82,9 @@ cd git-$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 {} \+ mkdir -p $PKG/usr/doc/git-$VERSION cp -a \ @@ -93,7 +93,7 @@ cp -a \ contrib \ $PKG/usr/doc/git-$VERSION ( cd $PKG/usr/doc/git-$VERSION/Documentation ; rm *.1 *.3 *.7 ) -( cd $PKG/usr/doc/git-$VERSION && find . -name ".git*" -exec rm -r "{}" \; ) +( cd $PKG/usr/doc/git-$VERSION && find . -name ".git*" -exec rm -r "{}" \+ ) make $NUMJOBS \ prefix=/usr \ |