summaryrefslogtreecommitdiffstats
path: root/network/packit
diff options
context:
space:
mode:
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
commit3f05f1261863c6103a25d417df12d385670b7958 (patch)
tree94ea6846903cffddfa04b8ccf324f46fbac1861c /network/packit
parent12da7206330f548c2344d77cd0f38d4476f34244 (diff)
downloadslackbuilds-3f05f1261863c6103a25d417df12d385670b7958.tar.gz
slackbuilds-3f05f1261863c6103a25d417df12d385670b7958.tar.xz
network/packit: Fixed for bash4.
Diffstat (limited to 'network/packit')
-rw-r--r--network/packit/packit.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/network/packit/packit.SlackBuild b/network/packit/packit.SlackBuild
index 2d559e32b4..1240f39f52 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 {} \;