summaryrefslogtreecommitdiffstats
path: root/libraries/DirectFB
diff options
context:
space:
mode:
author David Somero2010-05-19 08:35:27 +0200
committer David Somero2010-05-19 08:35:27 +0200
commitf335c7be8945ff06ee7fe586b69485d3589e4bed (patch)
treed2ec6e651da3f25f33a90610b02952ab81f958b1 /libraries/DirectFB
parent30d5681083525e63a9d0953d9cd6ee318e43d0fb (diff)
downloadslackbuilds-f335c7be8945ff06ee7fe586b69485d3589e4bed.tar.gz
libraries/DirectFB: Fixed for bash4.
Diffstat (limited to 'libraries/DirectFB')
-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 {} \;