diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:30 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:30 -0400 |
commit | 8022c2f7217960423f68be1b19d0e8d4dfc78649 (patch) | |
tree | dbae86fd10049f46b050c3b026cc2913e599f385 /libraries/tcllib | |
parent | ba674da012dfb7908ecaf5da579b41c34b774fbc (diff) |
libraries/tcllib: Fixed for bash4.
Diffstat (limited to 'libraries/tcllib')
-rw-r--r-- | libraries/tcllib/tcllib.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/tcllib/tcllib.SlackBuild b/libraries/tcllib/tcllib.SlackBuild index 3ce88a4461fb..1e663c289ebc 100644 --- a/libraries/tcllib/tcllib.SlackBuild +++ b/libraries/tcllib/tcllib.SlackBuild @@ -54,12 +54,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 || exit 1 find . -type f -exec gzip -9 {} \; |