diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:41:57 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:41:57 -0400 |
commit | 340b693c8466721ed12560c123909eba987766d6 (patch) | |
tree | 6c9a0a36c1a2d27cd4cbbc617a2994983e6e62ee /network/airpwn | |
parent | daad69ed677d49862a05b3e0043f524a9396a5c3 (diff) | |
download | slackbuilds-340b693c8466721ed12560c123909eba987766d6.tar.gz |
network/airpwn: Fixed for bash4.
Diffstat (limited to 'network/airpwn')
-rw-r--r-- | network/airpwn/airpwn.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/airpwn/airpwn.SlackBuild b/network/airpwn/airpwn.SlackBuild index d4c67fde3c..2b4514f65d 100644 --- a/network/airpwn/airpwn.SlackBuild +++ b/network/airpwn/airpwn.SlackBuild @@ -91,12 +91,8 @@ install -m 0755 mac80211_prep.sh $PKG/usr/sbin install -m 0755 madwifing_prep.sh $PKG/usr/sbin install -m 0755 madwifiold_prep.sh $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 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |