diff options
Diffstat (limited to 'source/n/crda/crda.SlackBuild')
-rwxr-xr-x | source/n/crda/crda.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/n/crda/crda.SlackBuild b/source/n/crda/crda.SlackBuild index 3f3bd072..e133bf47 100755 --- a/source/n/crda/crda.SlackBuild +++ b/source/n/crda/crda.SlackBuild @@ -75,9 +75,9 @@ cd wireless-regdb-$REGDBVERS || 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 this isn't installed on the system, crda will not build: make install MANDIR=/usr/man || exit 1 @@ -96,9 +96,9 @@ cd crda-$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 {} \+ # This thing uses our CFLAGS on its own, but if we specify them, # it fails to build. The build failure is wacky, as if it's not |