summaryrefslogtreecommitdiffstats
path: root/multimedia/mythplugins
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:41:12 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:41:12 -0400
commit44ba635afcf0a0a25c9b8adecaa89866dfe46a04 (patch)
tree4b90666dc635be9b3513cdad3dfe7f46eca89a09 /multimedia/mythplugins
parent00538da1dd7d8ed2ef39fe8400541588c62cb414 (diff)
downloadslackbuilds-44ba635afcf0a0a25c9b8adecaa89866dfe46a04.tar.gz
slackbuilds-44ba635afcf0a0a25c9b8adecaa89866dfe46a04.tar.xz
multimedia/mythplugins: Fixed for bash4.
Diffstat (limited to 'multimedia/mythplugins')
-rw-r--r--multimedia/mythplugins/mythplugins.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/multimedia/mythplugins/mythplugins.SlackBuild b/multimedia/mythplugins/mythplugins.SlackBuild
index 726bd44c1c..5fd9da1603 100644
--- a/multimedia/mythplugins/mythplugins.SlackBuild
+++ b/multimedia/mythplugins/mythplugins.SlackBuild
@@ -70,12 +70,8 @@ make INSTALL_ROOT="$PKG" install
cp -a mythweb $PKG/usr/share/mythtv/
-( 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
# Remove perllocal.pod and other special files that don't need to be installed
( cd $PKG