diff options
author | Andrew Morton <akpm@osdl.org> | 2006-12-22 01:12:01 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-22 08:55:51 -0800 |
commit | ef129412b4cbd6686d0749612cb9b76e207271f4 (patch) | |
tree | 54492763733c957405d938a74fb0ac99da927f9b /init | |
parent | 0888f06ac99f993df2bb4c479f5b9306dafe154f (diff) |
[PATCH] build compile.h earlier
compile.h is created super-late in the build. But proc_misc.c want to include
it, and it's generally not sane to have a header file in include/linux be
created at the end of the build: it's either not present or, worse, wrong for
most of the build.
So the patch arranges for compile.h to be built at the start of the build
process. It also consolidates the compile.h rules with those for version.h
and utsname.h, so they all get built together.
I hope. My chances of having got this right are about 2%.
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/init/Makefile b/init/Makefile index d6c764d0eab..9cd871ce578 100644 --- a/init/Makefile +++ b/init/Makefile @@ -18,12 +18,3 @@ clean-files := ../include/linux/compile.h $(obj)/main.o: include/linux/compile.h $(obj)/version.o: include/linux/compile.h -# compile.h changes depending on hostname, generation number, etc, -# so we regenerate it always. -# mkcompile_h will make sure to only update the -# actual file if its content has changed. - -include/linux/compile.h: FORCE - @echo ' CHK $@' - $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \ - "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT)" "$(CC) $(CFLAGS)" |