Re: dontdiff for 2.6.0-test4

From: Sam Ravnborg
Date: Mon Sep 01 2003 - 23:08:34 EST


On Mon, Sep 01, 2003 at 09:24:18PM -0400, Jeff Garzik wrote:
> >On Mon, Sep 01, 2003 at 01:07:41PM -0400, Jeff Garzik wrote:
> >
> >>dontdiff must know about many things that 'make mrproper' need not care
> >>about:
> >>
> >> files with ".bak" suffix
> >> files with "~" suffix
> >> BitKeeper, CVS, RCS, SCCS directories
> >
> >
> >make mrproper already cares about all those.
> >Fragments from top-level Makefile:
>
>
> I stand corrected :) However, I think it's a tangent:
>
> dontdiff is a file that's useful precisely because of the form its in.

When I proposed to autogenerate it I recalled it was a list of files,
including paths. But it is only basename used for matching.
So generating the list from within kbuild is too unsafe. There will most
likely be false negatives.
The following patch generate a list of filenames only, straight from
the kbuild Makefiles. I did not include patterns from the find
used in the top-level Makefile.

Usage: make KBUILD_DONTDIFF=1 clean

As can be seen wildcards is used in a few places
and the list of filenames generated is much bigger than included
in dontdiff today (341 files).
So I have changed my mind - do not autogenerate it. Stuff in the dontdiff
file somewhere (scripts/?).

Sam

===== scripts/Makefile.clean 1.12 vs edited =====
--- 1.12/scripts/Makefile.clean Mon Mar 10 22:03:33 2003
+++ edited/scripts/Makefile.clean Mon Sep 1 22:31:43 2003
@@ -29,14 +29,19 @@
# Add subdir path

subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn))
-__clean-files := $(wildcard $(addprefix $(obj)/, \
- $(extra-y) $(EXTRA_TARGETS) $(always) $(host-progs) \
- $(targets) $(clean-files)))
+_clean-files := $(extra-y) $(EXTRA_TARGETS) $(always) $(host-progs) \
+ $(targets) $(clean-files)

# ==========================================================================
-
+ifeq ($(KBUILD_DONTDIFF),)
+__clean-files := $(wildcard $(addprefix $(obj)/,$(_clean-files)))
quiet_cmd_clean = CLEAN $(obj)
cmd_clean = rm -f $(__clean-files); $(clean-rule)
+else
+__clean-files := $(_clean-files))
+quiet_cmd_clean =
+ cmd_clean = echo $(_clean-files)
+endif

__clean: $(subdir-ymn)
ifneq ($(strip $(__clean-files) $(clean-rule)),)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/