summaryrefslogtreecommitdiffstats
path: root/libraries/librapi2
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:37:59 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:37:59 -0400
commit460673938960cf50bdfbb94abcc41958a8831a9e (patch)
treeea8459ea24cda63bf669d1f26f7c57a551bda7e8 /libraries/librapi2
parentc4978c1663959ac76399071cd51cec28e0c964d0 (diff)
downloadslackbuilds-460673938960cf50bdfbb94abcc41958a8831a9e.tar.gz
slackbuilds-460673938960cf50bdfbb94abcc41958a8831a9e.tar.xz
libraries/librapi2: Fixed for bash4.
Diffstat (limited to 'libraries/librapi2')
-rw-r--r--libraries/librapi2/librapi2.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/librapi2/librapi2.SlackBuild b/libraries/librapi2/librapi2.SlackBuild
index 3c7fdce3f9..62dea71c30 100644
--- a/libraries/librapi2/librapi2.SlackBuild
+++ b/libraries/librapi2/librapi2.SlackBuild
@@ -55,12 +55,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 {} \;