diff options
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 |
commit | 44ba635afcf0a0a25c9b8adecaa89866dfe46a04 (patch) | |
tree | 4b90666dc635be9b3513cdad3dfe7f46eca89a09 /multimedia/mythplugins | |
parent | 00538da1dd7d8ed2ef39fe8400541588c62cb414 (diff) | |
download | slackbuilds-44ba635afcf0a0a25c9b8adecaa89866dfe46a04.tar.gz |
multimedia/mythplugins: Fixed for bash4.
Diffstat (limited to 'multimedia/mythplugins')
-rw-r--r-- | multimedia/mythplugins/mythplugins.SlackBuild | 8 |
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 |