diff options
author | Roman Yeryomin <roman@advem.lv> | 2012-10-03 23:24:38 +0300 |
---|---|---|
committer | Roman Yeryomin <roman@advem.lv> | 2013-05-26 00:44:48 +0300 |
commit | f1b3affef4622229561e9101984b34aa610831d5 (patch) | |
tree | 80849485ffebabf29a46dd18c015f241424c4c65 | |
parent | e2435102e210b008821b5032bc2ddb4916154d74 (diff) |
patch mac80211 makefile
Signed-off-by: Roman Yeryomin <roman@advem.lv>
-rw-r--r-- | package/mac80211/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/package/mac80211/Makefile b/package/mac80211/Makefile index e5bcdc3b1..672411eff 100644 --- a/package/mac80211/Makefile +++ b/package/mac80211/Makefile @@ -1427,11 +1427,21 @@ ifneq ($(CONFIG_PACKAGE_kmod-cfg80211)$(CONFIG_PACKAGE_kmod-lib80211),) endef endif +ifneq ($(CONFIG_PACKAGE_kmod-ath5k),) define Build/Configure - cmp $(PKG_BUILD_DIR)/include/linux/ath9k_platform.h $(LINUX_DIR)/include/linux/ath9k_platform.h cmp $(PKG_BUILD_DIR)/include/linux/ath5k_platform.h $(LINUX_DIR)/include/linux/ath5k_platform.h +endef +endif +ifneq ($(CONFIG_PACKAGE_kmod-ath9k),) +define Build/Configure + cmp $(PKG_BUILD_DIR)/include/linux/ath9k_platform.h $(LINUX_DIR)/include/linux/ath9k_platform.h +endef +endif +ifneq ($(CONFIG_PACKAGE_kmod-rt2x00-lib),) +define Build/Configure cmp $(PKG_BUILD_DIR)/include/linux/rt2x00_platform.h $(LINUX_DIR)/include/linux/rt2x00_platform.h endef +endif define Build/Compile $(call Build/Compile/kmod) |