summaryrefslogtreecommitdiffstats
path: root/libraries/DirectFB/DirectFB.SlackBuild
diff options
context:
space:
mode:
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
commitf335c7be8945ff06ee7fe586b69485d3589e4bed (patch)
treed2ec6e651da3f25f33a90610b02952ab81f958b1 /libraries/DirectFB/DirectFB.SlackBuild
parent30d5681083525e63a9d0953d9cd6ee318e43d0fb (diff)
downloadslackbuilds-f335c7be8945ff06ee7fe586b69485d3589e4bed.tar.gz
slackbuilds-f335c7be8945ff06ee7fe586b69485d3589e4bed.tar.xz
libraries/DirectFB: Fixed for bash4.
Diffstat (limited to 'libraries/DirectFB/DirectFB.SlackBuild')
-rw-r--r--libraries/DirectFB/DirectFB.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/DirectFB/DirectFB.SlackBuild b/libraries/DirectFB/DirectFB.SlackBuild
index 0a75b6282f..c8d7b91eac 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 {} \;