diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:26 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:26 -0400 |
commit | 23fc39120f5f39f1b98cbedad820dbb3d33e39e6 (patch) | |
tree | 63646c4d99622823da4d4f186e74aa5966ee3a75 /libraries/gsnmp | |
parent | 000bf276480027c5fa0c6f8c4208dda11b59b06c (diff) | |
download | slackbuilds-23fc39120f5f39f1b98cbedad820dbb3d33e39e6.tar.gz |
libraries/gsnmp: Fixed for bash4.
Diffstat (limited to 'libraries/gsnmp')
-rw-r--r-- | libraries/gsnmp/gsnmp.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/gsnmp/gsnmp.SlackBuild b/libraries/gsnmp/gsnmp.SlackBuild index 95db918a44..c720935736 100644 --- a/libraries/gsnmp/gsnmp.SlackBuild +++ b/libraries/gsnmp/gsnmp.SlackBuild @@ -49,12 +49,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 - 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 {} \; |