diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:26 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:26 -0400 |
commit | 69d638d25c7d8cff2a7075e7d0673df0c775f546 (patch) | |
tree | f12b701541730712f9bd183fa84cd77801734047 /audio/qsynth | |
parent | 9696ced7a650a118795d520c50424fd972092e26 (diff) | |
download | slackbuilds-69d638d25c7d8cff2a7075e7d0673df0c775f546.tar.gz |
audio/qsynth: Fixed for bash4.
Diffstat (limited to 'audio/qsynth')
-rw-r--r-- | audio/qsynth/qsynth.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/qsynth/qsynth.SlackBuild b/audio/qsynth/qsynth.SlackBuild index c38a6c8e0e..1a04664741 100644 --- a/audio/qsynth/qsynth.SlackBuild +++ b/audio/qsynth/qsynth.SlackBuild @@ -53,12 +53,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -( 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 cp -a \ |