All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix make clean damaging hg repos
@ 2005-08-09  4:10 Matt Mackall
  0 siblings, 0 replies; only message in thread
From: Matt Mackall @ 2005-08-09  4:10 UTC (permalink / raw)
  To: Andrew Morton, sam; +Cc: linux-kernel, mercurial

# HG changeset patch
# User Matt Mackall <mpm@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@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.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-08-09  4:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-09  4:10 [PATCH] fix make clean damaging hg repos Matt Mackall

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.