summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:44:12 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:44:12 -0400
commit463fdaa1fa89d4b53d46cd1c12992936ba5b9db6 (patch)
treefb543cd39e4ac8716892eb330b49c3d6ae2b2ebe /network
parent415b03afecb3cd4e9ba002f1726731b4e3a5d658 (diff)
downloadslackbuilds-463fdaa1fa89d4b53d46cd1c12992936ba5b9db6.tar.gz
slackbuilds-463fdaa1fa89d4b53d46cd1c12992936ba5b9db6.tar.xz
network/macchanger: Fixed for bash4.
Diffstat (limited to 'network')
-rw-r--r--network/macchanger/macchanger.SlackBuild6
1 files changed, 2 insertions, 4 deletions
diff --git a/network/macchanger/macchanger.SlackBuild b/network/macchanger/macchanger.SlackBuild
index 3c2e4b02e3..a6a4bbbf15 100644
--- a/network/macchanger/macchanger.SlackBuild
+++ b/network/macchanger/macchanger.SlackBuild
@@ -52,10 +52,8 @@ CFLAGS="$SLKCFLAGS" \
make || exit 1
make install DESTDIR=$PKG || exit 1
-( cd $PKG
- find . | xargs file | grep "executable" | 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 {} \;