[PATCH] fix make clean damaging hg repos

Matt Mackall mpm at selenic.com
Mon Aug 8 23:10:27 CDT 2005


# HG changeset patch
# User Matt Mackall <mpm at selenic.com>
# Node ID d3e83cde10ebc2a570503c1ff9c4d9e8f37f4af9
# Parent  915766b005c1a990ea360affa0c025087e45c723
Keep make clean from deleting files in .hg

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 <mpm at selenic.com>

diff -r 915766b005c1 -r d3e83cde10eb Makefile
--- a/Makefile	Sat Aug  6 20:06:30 2005
+++ b/Makefile	Tue Aug  9 04:08:06 2005
@@ -374,8 +374,8 @@
 
 # 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


-- 
Mathematics is the supreme nostalgia of our time.


More information about the Mercurial mailing list