main/wpa_supplicant: remove bogus freq_list

ref #4612
This commit is contained in:
Natanael Copa 2015-09-08 22:12:29 +02:00
parent 7bd1be45cf
commit ab4bc8a34c

View File

@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=wpa_supplicant
pkgver=2.4
pkgrel=3
pkgrel=4
pkgdesc="A utility providing key negotiation for WPA wireless networks"
url="http://hostap.epitest.fi/wpa_supplicant"
arch="all"
@ -119,7 +119,9 @@ build() {
cd "$_builddir"/wpa_supplicant
make LIBDIR=/lib BINDIR=/sbin || return 1
# comment out the network={ } stansas in config
sed -i -e '/^network=/,/}/s/^/#/' wpa_supplicant.conf
sed -i -e '/^network=/,/}/s/^/#/' \
-e '/^freq_list/s/^/#/' \
wpa_supplicant.conf
make wpa_gui-qt4 || return 1
make eapol_test || return 1
}