summaryrefslogtreecommitdiffstats
path: root/libraries/libopenraw
diff options
context:
space:
mode:
author David Somero2010-05-19 08:37:54 +0200
committer David Somero2010-05-19 08:37:54 +0200
commitf17ea0f9bfc58112eaffdca46953e6b1961158a2 (patch)
treed368e4b11bf3d40c2fa86682ddc69e27ae6d5135 /libraries/libopenraw
parentef16b7d6e05eac92a14a4ade6c250e1e0ebdf3c0 (diff)
downloadslackbuilds-f17ea0f9bfc58112eaffdca46953e6b1961158a2.tar.gz
libraries/libopenraw: Fixed for bash4.
Diffstat (limited to 'libraries/libopenraw')
-rw-r--r--libraries/libopenraw/libopenraw.SlackBuild6
1 files changed, 2 insertions, 4 deletions
diff --git a/libraries/libopenraw/libopenraw.SlackBuild b/libraries/libopenraw/libopenraw.SlackBuild
index 5df2ab3686..0f4a60b388 100644
--- a/libraries/libopenraw/libopenraw.SlackBuild
+++ b/libraries/libopenraw/libopenraw.SlackBuild
@@ -75,10 +75,8 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install-strip 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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION