diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:09 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:09 -0400 |
commit | 3f05f1261863c6103a25d417df12d385670b7958 (patch) | |
tree | 94ea6846903cffddfa04b8ccf324f46fbac1861c /network/packit/packit.SlackBuild | |
parent | 12da7206330f548c2344d77cd0f38d4476f34244 (diff) |
network/packit: Fixed for bash4.
Diffstat (limited to 'network/packit/packit.SlackBuild')
-rw-r--r-- | network/packit/packit.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/packit/packit.SlackBuild b/network/packit/packit.SlackBuild index 2d559e32b4fb..1240f39f52a6 100644 --- a/network/packit/packit.SlackBuild +++ b/network/packit/packit.SlackBuild @@ -73,12 +73,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 find . -type f -exec gzip -9 {} \; |