diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:11 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:11 -0400 |
commit | f09ac3e164bc0faf3301ec1c724426b3527e248c (patch) | |
tree | 339a53ef2446c92e069fb5b94fc140c6f3d51391 /libraries/libavc1394 | |
parent | 4a672fa44d3823ef3c6d8e68e673bf54c28703da (diff) | |
download | slackbuilds-f09ac3e164bc0faf3301ec1c724426b3527e248c.tar.gz |
libraries/libavc1394: Fixed for bash4.
Diffstat (limited to 'libraries/libavc1394')
-rw-r--r-- | libraries/libavc1394/libavc1394.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libavc1394/libavc1394.SlackBuild b/libraries/libavc1394/libavc1394.SlackBuild index 86a19f70ec..6b5db5a427 100644 --- a/libraries/libavc1394/libavc1394.SlackBuild +++ b/libraries/libavc1394/libavc1394.SlackBuild @@ -70,12 +70,8 @@ CFLAGS="$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 {} \; |