summaryrefslogtreecommitdiffstats
path: root/libraries/libebml
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:37:18 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:37:18 -0400
commit4deccb7ee71a9f137339621e4712010986e491a3 (patch)
treef4401c7aa94ea159a26b4e0b5e0344ea29cb6640 /libraries/libebml
parent76b9ab33df298da1526d48c7eab275858e59423d (diff)
downloadslackbuilds-4deccb7ee71a9f137339621e4712010986e491a3.tar.gz
slackbuilds-4deccb7ee71a9f137339621e4712010986e491a3.tar.xz
libraries/libebml: Fixed for bash4.
Diffstat (limited to 'libraries/libebml')
-rw-r--r--libraries/libebml/libebml.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libebml/libebml.SlackBuild b/libraries/libebml/libebml.SlackBuild
index 049d87b4cc..4a700a5a85 100644
--- a/libraries/libebml/libebml.SlackBuild
+++ b/libraries/libebml/libebml.SlackBuild
@@ -65,12 +65,8 @@ CXXFLAGS="$SLKCFLAGS" \
make prefix=/usr libdir=/usr/lib${LIBDIRSUFFIX} sharedlib -C make/linux
make prefix=$PKG/usr libdir=$PKG/usr/lib${LIBDIRSUFFIX} install -C make/linux
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null || true
- 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 ChangeLog LICENSE.LGPL $PKG/usr/doc/$PRGNAM-$VERSION