From: Felix Fietkau Date: Sun, 23 Nov 2014 14:16:47 +0000 (+0000) Subject: hostapd: fix build error on some variants with CONFIG_WPA_RFKILL_SUPPORT=y (#17765) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Flynxis%2Fomap.git;a=commitdiff_plain;h=ed5ed9cf6f7b95bc1c22cdba85a4a3f6cb5b2c18 hostapd: fix build error on some variants with CONFIG_WPA_RFKILL_SUPPORT=y (#17765) Signed-off-by: Felix Fietkau SVN-Revision: 43345 --- diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile index 838ef39aba..19d536ecc0 100644 --- a/package/network/services/hostapd/Makefile +++ b/package/network/services/hostapd/Makefile @@ -71,7 +71,6 @@ DRIVER_MAKEOPTS= \ CONFIG_IEEE80211N=$(HOSTAPD_IEEE80211N) \ CONFIG_IEEE80211W=$(CONFIG_PACKAGE_kmod-ath9k) \ CONFIG_DRIVER_WEXT=$(CONFIG_DRIVER_WEXT_SUPPORT) \ - $(if $(CONFIG_WPA_RFKILL_SUPPORT),NEED_RFKILL=y) ifneq ($(LOCAL_TYPE),hostapd) ifdef CONFIG_WPA_SUPPLICANT_OPENSSL @@ -83,6 +82,9 @@ ifneq ($(LOCAL_TYPE),hostapd) ifdef CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK TARGET_CFLAGS += -DNO_TIMESTAMP_CHECK endif + ifdef CONFIG_WPA_RFKILL_SUPPORT) + DRIVER_MAKEOPTS += NEED_RFKILL=y + endif DRIVER_MAKEOPTS += \ CONFIG_DRIVER_ROBOSWITCH=$(CONFIG_PACKAGE_kmod-switch) endif