diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:30:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:30:59 -0400 |
commit | 78df022232a47ffcf7b29b76d94ea827ad13307b (patch) | |
tree | 26bb7e168f05c4170fa91bfafbb3a95ce4220b9d /audio | |
parent | 286fd7f3f306fcb354c1b2356c5b94c656918bba (diff) | |
download | slackbuilds-78df022232a47ffcf7b29b76d94ea827ad13307b.tar.gz |
audio/a52dec: Fixed for bash4.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/a52dec/a52dec.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/a52dec/a52dec.SlackBuild b/audio/a52dec/a52dec.SlackBuild index 5393b21556..52e943f612 100644 --- a/audio/a52dec/a52dec.SlackBuild +++ b/audio/a52dec/a52dec.SlackBuild @@ -67,12 +67,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null - 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 {} \; |