diff options
Diffstat (limited to 'games/tong/tong.SlackBuild')
-rw-r--r-- | games/tong/tong.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/games/tong/tong.SlackBuild b/games/tong/tong.SlackBuild index 5ff079094d9a..2eee20ee1e94 100644 --- a/games/tong/tong.SlackBuild +++ b/games/tong/tong.SlackBuild @@ -65,7 +65,11 @@ cd $TMP tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM chown -R root:root . -chmod -R u+w,go+r-w,a-s . +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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; # Use our CFLAGS sed -i "s|-O3|$SLKCFLAGS|" Makefile |