summaryrefslogtreecommitdiffstats
path: root/network/wol/wol.SlackBuild
diff options
context:
space:
mode:
author Brian Muramatsu <btmura@gmail.com>2010-05-13 13:15:51 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-05-16 22:24:33 -0500
commitef9ba90d6cf01cc79eea2b09736ff3350bfdb98c (patch)
tree3cba654bbf26e9b6a09582887b31f6dc0867870a /network/wol/wol.SlackBuild
parentb156c6846d9e05465d9a36c185aeee1e84eea003 (diff)
downloadslackbuilds-ef9ba90d6cf01cc79eea2b09736ff3350bfdb98c.tar.gz
slackbuilds-ef9ba90d6cf01cc79eea2b09736ff3350bfdb98c.tar.xz
network/wol: Updated for version 0.7.1.
Diffstat (limited to 'network/wol/wol.SlackBuild')
-rw-r--r--network/wol/wol.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/network/wol/wol.SlackBuild b/network/wol/wol.SlackBuild
index 5278b6cc33..5f31ee85bd 100644
--- a/network/wol/wol.SlackBuild
+++ b/network/wol/wol.SlackBuild
@@ -53,12 +53,8 @@ CFLAGS="$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
- 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 {} \;