network/hostapd: Fixed for bash4.
This commit is contained in:
parent
0a24f95a4b
commit
3e6be245af
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue