summaryrefslogtreecommitdiffstats
path: root/libraries/libdca
diff options
context:
space:
mode:
author David Somero2010-05-19 08:37:13 +0200
committer David Somero2010-05-19 08:37:13 +0200
commitff7078ac2798918a6a1bbdf43cd8da3766eaf719 (patch)
treed4a383cd5e28be2d2c5d4f9e34a1a89370378f4c /libraries/libdca
parent43c223b36b3be74631987e2b7a025fc70984c26f (diff)
downloadslackbuilds-ff7078ac2798918a6a1bbdf43cd8da3766eaf719.tar.gz
libraries/libdca: Fixed for bash4.
Diffstat (limited to 'libraries/libdca')
-rw-r--r--libraries/libdca/libdca.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libdca/libdca.SlackBuild b/libraries/libdca/libdca.SlackBuild
index 40e3abd40f..6925c04d03 100644
--- a/libraries/libdca/libdca.SlackBuild
+++ b/libraries/libdca/libdca.SlackBuild
@@ -71,12 +71,8 @@ make
make install DESTDIR=$PKG
cp -a libdca/dca_internal.h $PKG/usr/include
-( 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 {} \;