summaryrefslogtreecommitdiffstats
path: root/libraries/gsm
diff options
context:
space:
mode:
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
commit000bf276480027c5fa0c6f8c4208dda11b59b06c (patch)
tree9ea16b218026e64c27bf0291fa1a2ecdad0f211e /libraries/gsm
parent5f492e2907be3c8580bc01509628180841fdb2eb (diff)
downloadslackbuilds-000bf276480027c5fa0c6f8c4208dda11b59b06c.tar.gz
slackbuilds-000bf276480027c5fa0c6f8c4208dda11b59b06c.tar.xz
libraries/gsm: Fixed for bash4.
Diffstat (limited to 'libraries/gsm')
-rw-r--r--libraries/gsm/gsm.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/gsm/gsm.SlackBuild b/libraries/gsm/gsm.SlackBuild
index af8d051771..e01d49eefd 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 {} \;