summaryrefslogtreecommitdiffstats
path: root/libraries/libnxml
diff options
context:
space:
mode:
author David Somero2010-05-19 08:37:51 +0200
committer David Somero2010-05-19 08:37:51 +0200
commitd40c83609cc23f322b32e5a4995460450ac276d5 (patch)
treeb08e7cb6116debf6dc39259b7c475c87690757fa /libraries/libnxml
parent50addf1c8c1aab6ca296d956fef166d3a038ecca (diff)
downloadslackbuilds-d40c83609cc23f322b32e5a4995460450ac276d5.tar.gz
libraries/libnxml: Fixed for bash4.
Diffstat (limited to 'libraries/libnxml')
-rw-r--r--libraries/libnxml/libnxml.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libnxml/libnxml.SlackBuild b/libraries/libnxml/libnxml.SlackBuild
index 1ea7b92bdb..80880712ee 100644
--- a/libraries/libnxml/libnxml.SlackBuild
+++ b/libraries/libnxml/libnxml.SlackBuild
@@ -55,12 +55,8 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install DESTDIR=$PKG
-( 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 AUTHORS COPYING ChangeLog INSTALL NEWS README \