diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-01-23 15:12:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-01-23 15:12:57 +0000 |
commit | c3a65ffc05604ec20f192c3df033bb1ce915e388 (patch) | |
tree | 719132559199d88c12adb1e6891b8c8855551e1a /package/hostapd/Makefile | |
parent | 0a45b1733bfd4a28286f15db0ff1af53f728e8b2 (diff) | |
download | upstream-c3a65ffc05604ec20f192c3df033bb1ce915e388.tar.gz upstream-c3a65ffc05604ec20f192c3df033bb1ce915e388.tar.bz2 upstream-c3a65ffc05604ec20f192c3df033bb1ce915e388.zip |
hostapd: fix compile error in the roboswitch driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19290 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd/Makefile')
-rw-r--r-- | package/hostapd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/hostapd/Makefile b/package/hostapd/Makefile index 95b34141e7..93392110ab 100644 --- a/package/hostapd/Makefile +++ b/package/hostapd/Makefile @@ -54,7 +54,6 @@ DRIVER_MAKEOPTS= \ CONFIG_DRIVER_NL80211=$(CONFIG_PACKAGE_kmod-mac80211) \ CONFIG_DRIVER_MADWIFI=$(CONFIG_PACKAGE_kmod-madwifi) \ CONFIG_DRIVER_HOSTAP=$(CONFIG_PACKAGE_kmod-hostap) \ - CONFIG_DRIVER_ROBOSWITCH=$(CONFIG_PACKAGE_kmod-switch) \ CONFIG_IEEE80211N=$(CONFIG_PACKAGE_kmod-ath9k) ifeq ($(LOCAL_TYPE),supplicant) @@ -66,6 +65,8 @@ endif ifneq ($(LOCAL_TYPE),hostapd) ifdef CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK TARGET_CFLAGS += -DNO_TIMESTAMP_CHECK + DRIVER_MAKEOPTS += \ + CONFIG_DRIVER_ROBOSWITCH=$(CONFIG_PACKAGE_kmod-switch) endif endif |