From 2e47624882b6c574c1d2cafb0e20b5276ac02710 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:42:12 -0400 Subject: network/bip: Fixed for bash4. --- network/bip/bip.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'network/bip') diff --git a/network/bip/bip.SlackBuild b/network/bip/bip.SlackBuild index d4cadc2f3a..2ce23948a7 100644 --- a/network/bip/bip.SlackBuild +++ b/network/bip/bip.SlackBuild @@ -75,12 +75,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/man/man1 cp -a *.1 $PKG/usr/man/man1 -- cgit v1.2.3-65-gdbad