All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] make distclean tries to delete dirs in tmpfs
@ 2001-05-09 18:44 Ingo Oeser
  2001-05-09 22:29 ` H. Peter Anvin
  0 siblings, 1 reply; 3+ messages in thread
From: Ingo Oeser @ 2001-05-09 18:44 UTC (permalink / raw)
  To: linux-kernel

Hi there,

make distclean deletes anything with size 0. This includes
directories, while making the kernel in tmpfs or ramfs.

This patch solves it, by not deleting directories in this rule.

Patch applies to any official kernel and with offsets even to
recent ac series.

--- linux-2.4.2-ac19/Makefile.orig  Wed May  9 10:47:04 2001
+++ linux-2.4.2-ac19/Makefile Wed May  9 10:51:04 2001
@@ -415,7 +415,8 @@
 	$(MAKE) -C Documentation/DocBook mrproper

 distclean: mrproper
-	rm -f core `find . \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
+	rm -f core `find . \( -not -type d \) -and \
+		\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
 		-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
 		-o -name '.*.rej' -o -name '.SUMS' -o -size 0 \) -print` TAGS tags


Regards

Ingo Oeser
-- 
10.+11.03.2001 - 3. Chemnitzer LinuxTag <http://www.tu-chemnitz.de/linux/tag>
         <<<<<<<<<<<<     been there and had much fun   >>>>>>>>>>>>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2001-05-10 12:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-05-09 18:44 [PATCH] make distclean tries to delete dirs in tmpfs Ingo Oeser
2001-05-09 22:29 ` H. Peter Anvin
2001-05-10  7:33   ` Ingo Oeser

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.