# HG changeset patch
# User Matt Mackall <[EMAIL PROTECTED]>
# 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 <[EMAIL PROTECTED]>

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.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to