summaryrefslogtreecommitdiffstats
path: root/audio/twolame
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:31:32 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:31:32 -0400
commit0b8492a23204867781fc7c4fb4fc6158008733da (patch)
tree8d60fb6d15bcf91b1df24756a6257c41f047b35b /audio/twolame
parent8a5b8ca928c0b590592b9bfc504b62ddf4493131 (diff)
downloadslackbuilds-0b8492a23204867781fc7c4fb4fc6158008733da.tar.gz
slackbuilds-0b8492a23204867781fc7c4fb4fc6158008733da.tar.xz
audio/twolame: Fixed for bash4.
Diffstat (limited to 'audio/twolame')
-rw-r--r--audio/twolame/twolame.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/twolame/twolame.SlackBuild b/audio/twolame/twolame.SlackBuild
index a270451260..ed0e7306c4 100644
--- a/audio/twolame/twolame.SlackBuild
+++ b/audio/twolame/twolame.SlackBuild
@@ -69,12 +69,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