diff options
author | David Spencer <baildon.research@googlemail.com> | 2016-05-30 12:09:12 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-06-01 23:54:53 +0700 |
commit | 8c039c254fe4f198ec691d85726ea7c2fc680173 (patch) | |
tree | cf92369a1077604111a7ea3c4a914ff584f5ea20 /games/tintin | |
parent | a11da5b07299cd77ab142b482272f274fa297e5b (diff) | |
download | slackbuilds-8c039c254fe4f198ec691d85726ea7c2fc680173.tar.gz |
games/tintin: Fixed ownership.
Signed-off-by: David Spencer <baildon.research@googlemail.com>
Diffstat (limited to 'games/tintin')
-rw-r--r-- | games/tintin/tintin.SlackBuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/games/tintin/tintin.SlackBuild b/games/tintin/tintin.SlackBuild index a8cd21a48f..c35056b9a5 100644 --- a/games/tintin/tintin.SlackBuild +++ b/games/tintin/tintin.SlackBuild @@ -59,20 +59,20 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT rm -rf $TMP/$PRGNAM-$VERSION cd $TMP -tar -zxvf $CWD/$PRGNAM-$VERSION.tar.gz - +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz #There's a discrepancy in naming convention here. #Just renaming the unpacked source to be consistent. mv tt $PRGNAM-$VERSION - -cd $PRGNAM-$VERSION/src +cd $PRGNAM-$VERSION chown -R root:root . 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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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 {} \; + +cd src CFLAGS="$SLKCFLAGS" \ ./configure \ |