diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:43:31 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:43:31 -0400 |
commit | 3e6be245afb954e3ad7f8084a6a81df1c94652d5 (patch) | |
tree | 79fe36bc9ca0f6b8e48db213b5ad2f650864e1c4 /network | |
parent | 0a24f95a4b4036a6b60f3cd9937fa3cf973a718d (diff) | |
download | slackbuilds-3e6be245afb954e3ad7f8084a6a81df1c94652d5.tar.gz |
network/hostapd: Fixed for bash4.
Diffstat (limited to 'network')
-rw-r--r-- | network/hostapd/hostapd.SlackBuild | 8 |
1 files 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 |