diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:41 -0400 |
commit | 4324320ae7de618bec4bc98dad3462ab913a6da7 (patch) | |
tree | dc96381f52bedd43f665d62dee77f11d00f95e2f /libraries | |
parent | 32639c858b24bf042972d79b4ac659a2928ea097 (diff) | |
download | slackbuilds-4324320ae7de618bec4bc98dad3462ab913a6da7.tar.gz |
libraries/xlt: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/xlt/xlt.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/xlt/xlt.SlackBuild b/libraries/xlt/xlt.SlackBuild index 0cadf3a8a1..cd701d7ab0 100644 --- a/libraries/xlt/xlt.SlackBuild +++ b/libraries/xlt/xlt.SlackBuild @@ -55,12 +55,8 @@ CXXFLAGS="$SLKCFLAGS" \ make || exit 1 make install DESTDIR=$PKG || exit 1 -( 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 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |