diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:56 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:56 -0400 |
commit | cbbe2cb824a9b246f5b7b83a2f01552abf3c45eb (patch) | |
tree | 2fb49bff5d779661f0b2eb48ac8b28e6f2a1d4e1 /libraries/libotr/libotr.SlackBuild | |
parent | 191c253a17e14852772b0c2a97a7a0642f958025 (diff) | |
download | slackbuilds-cbbe2cb824a9b246f5b7b83a2f01552abf3c45eb.tar.gz |
libraries/libotr: Fixed for bash4.
Diffstat (limited to 'libraries/libotr/libotr.SlackBuild')
-rw-r--r-- | libraries/libotr/libotr.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libotr/libotr.SlackBuild b/libraries/libotr/libotr.SlackBuild index 9b80ceecef..e19ca924c6 100644 --- a/libraries/libotr/libotr.SlackBuild +++ b/libraries/libotr/libotr.SlackBuild @@ -68,12 +68,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 - 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 {} \; |