diff options
author | David Spencer <idlemoor@slackbuilds.org> | 2016-01-08 22:04:56 +0000 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-01-08 22:04:56 +0000 |
commit | c7d834cf5d6f6455735638d5d405c126de487f1f (patch) | |
tree | e699b334c53e38fd89e679d262d66daaada9f79c /audio | |
parent | 4e70fa98b345403364f1d2b30a484897687ab06f (diff) | |
download | slackbuilds-c7d834cf5d6f6455735638d5d405c126de487f1f.tar.gz |
audio/miniAudicle: Fix file ownership.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/miniAudicle/miniAudicle.SlackBuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/miniAudicle/miniAudicle.SlackBuild b/audio/miniAudicle/miniAudicle.SlackBuild index 29e3871f25..9ecdb75d00 100644 --- a/audio/miniAudicle/miniAudicle.SlackBuild +++ b/audio/miniAudicle/miniAudicle.SlackBuild @@ -44,7 +44,7 @@ mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tgz -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 \) \ @@ -52,6 +52,8 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +cd src + # Set our CFLAGS sed -i "s|-O3|$SLKCFLAGS|" makefile* chuck/makefile* |