diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:01 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:01 -0400 |
commit | 13d6eae4922f6350deede1c26b9e9ab669a6c920 (patch) | |
tree | ea91aa330710ff0fc773ac9564ce6f077ae1a103 | |
parent | 050244e0f150b0a04ed8dcac5d3373c01886bde6 (diff) | |
download | slackbuilds-13d6eae4922f6350deede1c26b9e9ab669a6c920.tar.gz |
audio/audacity: Fixed for bash4.
-rw-r--r-- | audio/audacity/audacity.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/audacity/audacity.SlackBuild b/audio/audacity/audacity.SlackBuild index 8095f04d75..8f6ad2504c 100644 --- a/audio/audacity/audacity.SlackBuild +++ b/audio/audacity/audacity.SlackBuild @@ -100,12 +100,8 @@ CXXFLAGS="$SLKCFLAGS" \ make || exit 1 make install DESTDIR=$PKG || exit 1 -( 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 -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true # We're going to overwrite the included audacity.desktop file with ours, # and the icon isn't added at all by upstream, so we'll do that here |