From: Hamish Moffatt Date: Thu, 11 Sep 2008 02:22:47 +0000 (-0000) Subject: Applied patch from Brian Foster : X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=346844d05781d9dfaaae8d110b58242f1755c764;p=buildroot.git Applied patch from Brian Foster : make "make clean" remove the .root stamp, so that everything will be reinstalled properly on a subsequent build. (bug id 4304) Also remove new autotools-stamps directory. --- diff --git a/Makefile b/Makefile index 1f9e7f6fe8..d446302155 100644 --- a/Makefile +++ b/Makefile @@ -358,10 +358,10 @@ external-deps: # ############################################################# clean: $(TARGETS_CLEAN) - rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE) + rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE) $(PROJECT_BUILD_DIR)/.root $(PROJECT_BUILD_DIR)/autotools-stamps dirclean: $(TARGETS_DIRCLEAN) - rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE) + rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE) $(PROJECT_BUILD_DIR)/.root $(PROJECT_BUILD_DIR)/autotools-stamps distclean: ifeq ($(DL_DIR),$(BASE_DIR)/dl)