diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:06 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:06 -0400 |
commit | 085ce2a0516069d9c3ca746158a449b7f953125f (patch) | |
tree | 5889f00b3d956966d022e51d832fdf9c897b4e56 /audio/gimmix | |
parent | ce3028789ac54e2b03bf2da5fce59ff882142df1 (diff) | |
download | slackbuilds-085ce2a0516069d9c3ca746158a449b7f953125f.tar.gz |
audio/gimmix: Fixed for bash4.
Diffstat (limited to 'audio/gimmix')
-rw-r--r-- | audio/gimmix/gimmix.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/gimmix/gimmix.SlackBuild b/audio/gimmix/gimmix.SlackBuild index c134c67630..23291f6b42 100644 --- a/audio/gimmix/gimmix.SlackBuild +++ b/audio/gimmix/gimmix.SlackBuild @@ -59,12 +59,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 -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |