diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:39 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:39 -0400 |
commit | 53da41574dcb65c19273e829a55a7435957b6435 (patch) | |
tree | 68456cdacdfb816ff52747a523b15c922c4039d7 /network/xsp | |
parent | 40e09e00ff21f3a38415224c99afd1abd6fcbf30 (diff) | |
download | slackbuilds-53da41574dcb65c19273e829a55a7435957b6435.tar.gz |
network/xsp: Fixed for bash4.
Diffstat (limited to 'network/xsp')
-rw-r--r-- | network/xsp/xsp.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/xsp/xsp.SlackBuild b/network/xsp/xsp.SlackBuild index 18cdf00248..e3fd7de2d9 100644 --- a/network/xsp/xsp.SlackBuild +++ b/network/xsp/xsp.SlackBuild @@ -54,12 +54,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 || true -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true gzip -9 $PKG/usr/man/man?/*.? |