summaryrefslogtreecommitdiffstats
path: root/libraries/libsynce
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:09 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:09 -0400
commitf69bd2a41a93317ae556b87f863c50ed00effe28 (patch)
tree701deee159cc7c029b4da9a7a4d7ff303e984c97 /libraries/libsynce
parent518c2923d3154a33c2c333dac1fbc6c956f196e5 (diff)
downloadslackbuilds-f69bd2a41a93317ae556b87f863c50ed00effe28.tar.gz
slackbuilds-f69bd2a41a93317ae556b87f863c50ed00effe28.tar.xz
libraries/libsynce: Fixed for bash4.
Diffstat (limited to 'libraries/libsynce')
-rw-r--r--libraries/libsynce/libsynce.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libsynce/libsynce.SlackBuild b/libraries/libsynce/libsynce.SlackBuild
index e896b70a07..4166ab4731 100644
--- a/libraries/libsynce/libsynce.SlackBuild
+++ b/libraries/libsynce/libsynce.SlackBuild
@@ -54,12 +54,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 {} \;