summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:31:07 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:31:07 -0400
commite38676934e60c32e4c8e4843963f07f3e83c5bd5 (patch)
tree67a00e0aa686945e0ac304d657c181cf8190636b /audio
parent085ce2a0516069d9c3ca746158a449b7f953125f (diff)
downloadslackbuilds-e38676934e60c32e4c8e4843963f07f3e83c5bd5.tar.gz
slackbuilds-e38676934e60c32e4c8e4843963f07f3e83c5bd5.tar.xz
audio/gnump3d: Fixed for bash4.
Diffstat (limited to 'audio')
-rw-r--r--audio/gnump3d/gnump3d.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/gnump3d/gnump3d.SlackBuild b/audio/gnump3d/gnump3d.SlackBuild
index 3351e4cd16..ea6b1e9941 100644
--- a/audio/gnump3d/gnump3d.SlackBuild
+++ b/audio/gnump3d/gnump3d.SlackBuild
@@ -67,12 +67,8 @@ make install \
PREFIX=$PKG \
MANDIR=/usr/man/man1
-( 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 {} \;