X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/a4b548a00df5f8bcf28e7bb5093123f954eb367a..5a99d27cc6b54b9a24133ee16ede65eeece37e0d:/package/hostapd/Makefile diff --git a/package/hostapd/Makefile b/package/hostapd/Makefile index bb497fec3..b1dde1c45 100644 --- a/package/hostapd/Makefile +++ b/package/hostapd/Makefile @@ -80,9 +80,19 @@ define Package/hostapd-utils/description IEEE 802.1x/WPA/EAP/RADIUS Authenticator. endef -define Build/Configure +ifneq ($(wildcard $(PKG_BUILD_DIR)/.config_*),$(subst .configured_,.config_,$(STAMP_CONFIGURED))) + $(warning $(wildcard $(PKG_BUILD_DIR)/.config_*) != $(subst .configured_,.config_,$(STAMP_CONFIGURED))) + define Build/Configure/rebuild rm -f $(PKG_BUILD_DIR)/hostapd/hostapd + rm -f $(PKG_BUILD_DIR)/hostapd/*.o rm -f $(PKG_BUILD_DIR)/src/drivers/drivers.o + rm -f $(PKG_BUILD_DIR)/.config_* + touch $(subst .configured_,.config_,$(STAMP_CONFIGURED)) + endef +endif + +define Build/Configure + $(Build/Configure/rebuild) $(CP) ./files/$(BUILD_VARIANT).config $(PKG_BUILD_DIR)/hostapd/.config endef