diff options
author | Adrien Nader <adrien@notk.org> | 2012-08-05 22:17:58 +0200 |
---|---|---|
committer | Adrien Nader <adrien@notk.org> | 2012-08-05 22:17:58 +0200 |
commit | 1c4625bbd295e68ca0f8d31ad91f92f2ee3c9cea (patch) | |
tree | 84725f982345db41312b43b789379fee035e5a36 /d/binutils/binutils.SlackBuild | |
parent | 66aaefb1314f439dcf01f429d6f99c988d9b0b1c (diff) |
gcc, binutils: use find's -exec with '+', not ';'.
Diffstat (limited to 'd/binutils/binutils.SlackBuild')
-rwxr-xr-x | d/binutils/binutils.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/d/binutils/binutils.SlackBuild b/d/binutils/binutils.SlackBuild index c4cec59..8babdb0 100755 --- a/d/binutils/binutils.SlackBuild +++ b/d/binutils/binutils.SlackBuild @@ -105,9 +105,9 @@ cd binutils-$VERSION 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 {} + # End of preparations if echo "$*" | grep -qw -- --prep ; then |