summaryrefslogtreecommitdiffstats
path: root/system/pcp-gui
diff options
context:
space:
mode:
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
commit812b08456dc532f60d7fa4d60e5a2571884761e7 (patch)
treead543e8bf6af1deaffeea5939c360b0a6eeaeed7 /system/pcp-gui
parent9b4250cb4621d05a7328eddbc674bf8cc0c072d7 (diff)
downloadslackbuilds-812b08456dc532f60d7fa4d60e5a2571884761e7.tar.gz
slackbuilds-812b08456dc532f60d7fa4d60e5a2571884761e7.tar.xz
system/pcp-gui: Fixed for bash4.
Diffstat (limited to 'system/pcp-gui')
-rw-r--r--system/pcp-gui/pcp-gui.SlackBuild8
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 {} \;