diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:27 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:27 -0400 |
commit | f335c7be8945ff06ee7fe586b69485d3589e4bed (patch) | |
tree | d2ec6e651da3f25f33a90610b02952ab81f958b1 /libraries/DirectFB | |
parent | 30d5681083525e63a9d0953d9cd6ee318e43d0fb (diff) |
libraries/DirectFB: Fixed for bash4.
Diffstat (limited to 'libraries/DirectFB')
-rw-r--r-- | libraries/DirectFB/DirectFB.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/DirectFB/DirectFB.SlackBuild b/libraries/DirectFB/DirectFB.SlackBuild index 0a75b6282fd2..c8d7b91eac89 100644 --- a/libraries/DirectFB/DirectFB.SlackBuild +++ b/libraries/DirectFB/DirectFB.SlackBuild @@ -76,12 +76,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 || 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 {} \; |