summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:45:11 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:45:11 -0400
commit8e7571bc74293e4c79a27e1832a8b23a55533b7d (patch)
tree7a7002357a022d90a11624480a36e62b37b79c90 /network
parent3f05f1261863c6103a25d417df12d385670b7958 (diff)
downloadslackbuilds-8e7571bc74293e4c79a27e1832a8b23a55533b7d.tar.gz
slackbuilds-8e7571bc74293e4c79a27e1832a8b23a55533b7d.tar.xz
network/pdnsd: Fixed for bash4.
Diffstat (limited to 'network')
-rw-r--r--network/pdnsd/pdnsd.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/network/pdnsd/pdnsd.SlackBuild b/network/pdnsd/pdnsd.SlackBuild
index 37a5598090..2a9c9a449d 100644
--- a/network/pdnsd/pdnsd.SlackBuild
+++ b/network/pdnsd/pdnsd.SlackBuild
@@ -55,12 +55,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 {} \;