diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:03 -0400 |
commit | 53769c57446a9217900ce8876e80f030b0a82fa6 (patch) | |
tree | 405e0c1b2d11966cca02c8421dd230467ded94b5 /network/arora | |
parent | 8230b6aedf373c77d7ec1bc3e103e4ada4d32dcd (diff) | |
download | slackbuilds-53769c57446a9217900ce8876e80f030b0a82fa6.tar.gz |
network/arora: Fixed for bash4.
Diffstat (limited to 'network/arora')
-rw-r--r-- | network/arora/arora.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/arora/arora.SlackBuild b/network/arora/arora.SlackBuild index e794e9b945..f64944f916 100644 --- a/network/arora/arora.SlackBuild +++ b/network/arora/arora.SlackBuild @@ -48,12 +48,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make INSTALL_ROOT=$PKG install -( 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 mv $PKG/usr/share/man $PKG/usr/man |