diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:16 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:16 -0400 |
commit | f43b76b01f3faea3ff95ec518639e251a52a0e9f (patch) | |
tree | 29e0a953be764770a7e5f01553c17b8b296daa02 | |
parent | 8bbe974229811ed3747f5472e1f7d09def29a633 (diff) | |
download | slackbuilds-f43b76b01f3faea3ff95ec518639e251a52a0e9f.tar.gz |
audio/mixxx: Fixed for bash4.
-rw-r--r-- | audio/mixxx/mixxx.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/mixxx/mixxx.SlackBuild b/audio/mixxx/mixxx.SlackBuild index 60700c90c5..5f036266b5 100644 --- a/audio/mixxx/mixxx.SlackBuild +++ b/audio/mixxx/mixxx.SlackBuild @@ -83,12 +83,8 @@ scons \ find . -name 'Thumbs.db' -exec rm {} \; ) -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |