diff options
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 |