From: Hamish Moffatt Date: Thu, 4 Sep 2008 01:05:17 +0000 (-0000) Subject: In the uninstall and clean targets, remove the built/installed stamp files X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=feb569d3cdbad61167df081781c2be8fb61f91f0;p=buildroot.git In the uninstall and clean targets, remove the built/installed stamp files so that those actions will do something if executed again. --- diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 7f7d624525..480082f8b1 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -250,13 +250,18 @@ $(BUILD_DIR)/%/.stamp_target_installed: $(BUILD_DIR)/%/.stamp_cleaned: $(call MESSAGE,"Cleaning up") -$($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_UNINSTALL_STAGING_OPT) -C $(@D)/$($(PKG)_SUBDIR) + rm -f $(@D)/.stamp_staging_installed -$($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_UNINSTALL_TARGET_OPT) -C $(@D)/$($(PKG)_SUBDIR) + rm -f $(@D)/.stamp_target_installed -$($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_CLEAN_OPT) -C $(@D)/$($(PKG)_SUBDIR) + rm -f $(@D)/.stamp_built $(BUILD_DIR)/%/.stamp_uninstalled: $(call MESSAGE,"Uninstalling") $($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_UNINSTALL_STAGING_OPT) -C $(@D)/$($(PKG)_SUBDIR) + rm -f $(@D)/.stamp_staging_installed $($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_UNINSTALL_TARGET_OPT) -C $(@D)/$($(PKG)_SUBDIR) + rm -f $(@D)/.stamp_target_installed $(BUILD_DIR)/%/.stamp_dircleaned: rm -Rf $(@D)