diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:54 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:54 -0400 |
commit | f17ea0f9bfc58112eaffdca46953e6b1961158a2 (patch) | |
tree | d368e4b11bf3d40c2fa86682ddc69e27ae6d5135 /libraries/libopenraw | |
parent | ef16b7d6e05eac92a14a4ade6c250e1e0ebdf3c0 (diff) |
libraries/libopenraw: Fixed for bash4.
Diffstat (limited to 'libraries/libopenraw')
-rw-r--r-- | libraries/libopenraw/libopenraw.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libraries/libopenraw/libopenraw.SlackBuild b/libraries/libopenraw/libopenraw.SlackBuild index 5df2ab3686be..0f4a60b38865 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 |