diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:24 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:24 -0400 |
commit | 000bf276480027c5fa0c6f8c4208dda11b59b06c (patch) | |
tree | 9ea16b218026e64c27bf0291fa1a2ecdad0f211e /libraries/gsm/gsm.SlackBuild | |
parent | 5f492e2907be3c8580bc01509628180841fdb2eb (diff) |
libraries/gsm: Fixed for bash4.
Diffstat (limited to 'libraries/gsm/gsm.SlackBuild')
-rw-r--r-- | libraries/gsm/gsm.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/gsm/gsm.SlackBuild b/libraries/gsm/gsm.SlackBuild index af8d05177124..e01d49eefd1b 100644 --- a/libraries/gsm/gsm.SlackBuild +++ b/libraries/gsm/gsm.SlackBuild @@ -94,12 +94,8 @@ cp -p lib/libgsm.so.$VERSION $PKG/usr/lib$LIBDIRSUFFIX rm -f untoast ; ln -s tcat untoast ) -( 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 || true -) +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 {} \; |