diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-08-20 15:58:55 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-08-20 15:58:55 +0000 |
commit | ea91ad4fcd86c1859ce42dd5371d878718091c7d (patch) | |
tree | cb9ce70cae5af297047550910d38bcae1aea0784 | |
parent | 2244492d6abbcd035681fbc530e6583df62f1d95 (diff) | |
download | upstream-ea91ad4fcd86c1859ce42dd5371d878718091c7d.tar.gz upstream-ea91ad4fcd86c1859ce42dd5371d878718091c7d.tar.bz2 upstream-ea91ad4fcd86c1859ce42dd5371d878718091c7d.zip |
wpa_supplicant: fix madwifi related config change handling
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17333 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/wpa_supplicant/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/wpa_supplicant/Makefile b/package/wpa_supplicant/Makefile index 9c541551d9..39c66e72b9 100644 --- a/package/wpa_supplicant/Makefile +++ b/package/wpa_supplicant/Makefile @@ -56,6 +56,8 @@ TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/madwifi $(if $(CONFIG_WPA_SUPPLICA define Build/Configure cp $(CONFIG) $(PKG_BUILD_DIR)/wpa_supplicant/.config + [ -f $(STAMP_CONFIGURED) ] || $(MAKE) -C $(PKG_BUILD_DIR)/wpa_supplicant clean + rm -f $(PKG_BUILD_DIR)/.configured* $(if $(CONFIG_PACKAGE_kmod-madwifi),,$(SED) 's,^CONFIG_DRIVER_MADWIFI,#CONFIG_DRIVER_MADWIFI,g' $(PKG_BUILD_DIR)/wpa_supplicant/.config) $(if $(CONFIG_PACKAGE_kmod-hostap),,$(SED) 's,^CONFIG_DRIVER_HOSTAP,#CONFIG_DRIVER_HOSTAP,g' $(PKG_BUILD_DIR)/wpa_supplicant/.config) $(if $(CONFIG_WPA_SUPPLICANT_OPENSSL),$(SED) 's|^CONFIG_TLS.*|CONFIG_TLS=openssl|g' $(PKG_BUILD_DIR)/wpa_supplicant/.config) |