diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:33 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:33 -0400 |
commit | 346ef6fc509256b972f6527b5601bd59f88524e6 (patch) | |
tree | 8d00f4114a1afdb2b5d7cae809371d95fe8b6ff1 /network/wvdial | |
parent | 9533aae7a8495736526c717b9894620927b9242d (diff) | |
download | slackbuilds-346ef6fc509256b972f6527b5601bd59f88524e6.tar.gz |
network/wvdial: Fixed for bash4.
Diffstat (limited to 'network/wvdial')
-rw-r--r-- | network/wvdial/wvdial.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/wvdial/wvdial.SlackBuild b/network/wvdial/wvdial.SlackBuild index cf1cdd2384..3ae37f70df 100644 --- a/network/wvdial/wvdial.SlackBuild +++ b/network/wvdial/wvdial.SlackBuild @@ -47,12 +47,8 @@ patch -u Makefile $CWD/Makefile.diff make prefix=/usr MANDIR=/usr/man make prefix=/usr MANDIR=/usr/man install DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || exit 1 - 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 {} \; |