summaryrefslogtreecommitdiffstats
path: root/system/ts
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:50:39 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:50:39 -0400
commit83c2df397e31472b3636462c1bc7789272a7d114 (patch)
tree9dbabbb5d85279e2a19450ad3d36fa691f4d7dc9 /system/ts
parent839002e5a0889f0d1a471aad8259883faa882b87 (diff)
downloadslackbuilds-83c2df397e31472b3636462c1bc7789272a7d114.tar.gz
slackbuilds-83c2df397e31472b3636462c1bc7789272a7d114.tar.xz
system/ts: Fixed for bash4.
Diffstat (limited to 'system/ts')
-rw-r--r--system/ts/ts.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/ts/ts.SlackBuild b/system/ts/ts.SlackBuild
index e1e8b138ef..cc6bf235d8 100644
--- a/system/ts/ts.SlackBuild
+++ b/system/ts/ts.SlackBuild
@@ -46,12 +46,8 @@ find . \
make
make install PREFIX=$PKG/usr
-( 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
mv $PKG/usr/share/man $PKG/usr
rmdir $PKG/usr/share