summaryrefslogtreecommitdiffstats
path: root/audio/id3
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:31:10 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:31:10 -0400
commitd1db203ad0130d1e19fd1293e74e45e49c0fa53a (patch)
tree36d1d73ce273ffd790a6b793c7113cdbb0284f74 /audio/id3
parent67296d014e439f30963578e906fa2871f5e53439 (diff)
downloadslackbuilds-d1db203ad0130d1e19fd1293e74e45e49c0fa53a.tar.gz
slackbuilds-d1db203ad0130d1e19fd1293e74e45e49c0fa53a.tar.xz
audio/id3: Fixed for bash4.
Diffstat (limited to 'audio/id3')
-rw-r--r--audio/id3/id3.SlackBuild8
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 {} \;