summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--network/wol/wol.SlackBuild8
-rw-r--r--network/wol/wol.info2
2 files changed, 3 insertions, 7 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 {} \;
diff --git a/network/wol/wol.info b/network/wol/wol.info
index befdb43e17..49b01d0ae5 100644
--- a/network/wol/wol.info
+++ b/network/wol/wol.info
@@ -2,8 +2,8 @@ PRGNAM="wol"
VERSION="0.7.1"
HOMEPAGE="http://sourceforge.net/projects/wake-on-lan/"
DOWNLOAD="http://downloads.sourceforge.net/wake-on-lan/wol-0.7.1.tar.gz"
-DOWNLOAD_x86_64=""
MD5SUM="c2fa9d7e771134ac8c89d56b8197d4ca"
+DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Brian Muramatsu"
EMAIL="btmura@gmail.com"