summaryrefslogtreecommitdiffstats
path: root/audio/mpc
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:31:20 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:31:20 -0400
commitb151df4f5225391a39199d9b1c72a29bbf1158b0 (patch)
tree104354ae5a5609bd804ff68650c65e3f3cd06522 /audio/mpc
parent7a04eabb922d96e857c6298d49d7a742421b2c11 (diff)
downloadslackbuilds-b151df4f5225391a39199d9b1c72a29bbf1158b0.tar.gz
slackbuilds-b151df4f5225391a39199d9b1c72a29bbf1158b0.tar.xz
audio/mpc: Fixed for bash4.
Diffstat (limited to 'audio/mpc')
-rw-r--r--audio/mpc/mpc.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/mpc/mpc.SlackBuild b/audio/mpc/mpc.SlackBuild
index e985e4860e..49c08f046f 100644
--- a/audio/mpc/mpc.SlackBuild
+++ b/audio/mpc/mpc.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
- 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 {} \;