diff options
Diffstat (limited to 'audio/id3/id3.SlackBuild')
-rw-r--r-- | audio/id3/id3.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/id3/id3.SlackBuild b/audio/id3/id3.SlackBuild index 3c9bf35bb2..25e97206c9 100644 --- a/audio/id3/id3.SlackBuild +++ b/audio/id3/id3.SlackBuild @@ -55,12 +55,8 @@ cp -a id3 $PKG/usr/bin mkdir -p $PKG/usr/man/man1 cp -a id3.man $PKG/usr/man/man1/id3.1 -( 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 find . -type f -exec gzip -9 {} \; |