From d1db203ad0130d1e19fd1293e74e45e49c0fa53a Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:31:10 -0400 Subject: audio/id3: Fixed for bash4. --- audio/id3/id3.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'audio') diff --git a/audio/id3/id3.SlackBuild b/audio/id3/id3.SlackBuild index 3c9bf35bb2cf..25e97206c990 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 {} \; -- cgit v1.2.3