From 3e6be245afb954e3ad7f8084a6a81df1c94652d5 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:43:31 -0400 Subject: [PATCH] network/hostapd: Fixed for bash4. --- network/hostapd/hostapd.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/network/hostapd/hostapd.SlackBuild b/network/hostapd/hostapd.SlackBuild index b55f84afbe..7793eab082 100644 --- a/network/hostapd/hostapd.SlackBuild +++ b/network/hostapd/hostapd.SlackBuild @@ -85,12 +85,8 @@ gzip -9c hostapd.8 > $PKG/usr/man/man8/hostapd.8.gz gzip -9c hostapd_cli.1 > $PKG/usr/man/man1/hostapd_cli.1.gz cp hostapd hostapd_cli $PKG/usr/sbin/ -( 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 COPYING ChangeLog README $PKG/usr/doc/$PRGNAM-$VERSION