From: Matt Mackall Running 'make clean' was quietly deleting files in Mercurial kernel repositories matching '.*.d', which was corrupting the tags portions of the repository. Spotted and fixed by several people. Signed-off-by: Matt Mackall Signed-off-by: Andrew Morton --- Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN Makefile~kbuild-fix-make-clean-damaging-hg-repos Makefile --- devel/Makefile~kbuild-fix-make-clean-damaging-hg-repos 2005-08-08 23:44:54.000000000 -0700 +++ devel-akpm/Makefile 2005-08-08 23:44:54.000000000 -0700 @@ -371,8 +371,8 @@ export MODVERDIR := $(if $(KBUILD_EXTMOD # Files to ignore in find ... statements -RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS -o -name .pc \) -prune -o -RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc +RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS -o -name .pc -o -name .hg \) -prune -o +RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc --exclude .hg # =========================================================================== # Rules shared between *config targets and build targets _