diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:51 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:51 -0400 |
commit | d40c83609cc23f322b32e5a4995460450ac276d5 (patch) | |
tree | b08e7cb6116debf6dc39259b7c475c87690757fa /libraries/libnxml | |
parent | 50addf1c8c1aab6ca296d956fef166d3a038ecca (diff) | |
download | slackbuilds-d40c83609cc23f322b32e5a4995460450ac276d5.tar.gz |
libraries/libnxml: Fixed for bash4.
Diffstat (limited to 'libraries/libnxml')
-rw-r--r-- | libraries/libnxml/libnxml.SlackBuild | 8 |
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 \ |