diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:07 -0400 |
commit | 812b08456dc532f60d7fa4d60e5a2571884761e7 (patch) | |
tree | ad543e8bf6af1deaffeea5939c360b0a6eeaeed7 /system | |
parent | 9b4250cb4621d05a7328eddbc674bf8cc0c072d7 (diff) | |
download | slackbuilds-812b08456dc532f60d7fa4d60e5a2571884761e7.tar.gz |
system/pcp-gui: Fixed for bash4.
Diffstat (limited to 'system')
-rw-r--r-- | system/pcp-gui/pcp-gui.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/pcp-gui/pcp-gui.SlackBuild b/system/pcp-gui/pcp-gui.SlackBuild index 3732b47800..7b0a15bbaa 100644 --- a/system/pcp-gui/pcp-gui.SlackBuild +++ b/system/pcp-gui/pcp-gui.SlackBuild @@ -53,12 +53,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DIST_ROOT="$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 {} \; |