From: Felix Fietkau Date: Tue, 19 Jan 2010 18:23:06 +0000 (+0000) Subject: hostapd: remove all object files on config changes X-Git-Tag: reboot~21367 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=commitdiff_plain;h=43c96ad50ca615b02c84d990235ae15af2b43252 hostapd: remove all object files on config changes SVN-Revision: 19229 --- diff --git a/package/hostapd/Makefile b/package/hostapd/Makefile index 6b46796168..342c7519d5 100644 --- a/package/hostapd/Makefile +++ b/package/hostapd/Makefile @@ -83,9 +83,8 @@ endef 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 + $(FIND) $(PKG_BUILD_DIR) -name \*.o | $(XARGS) rm -f 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