aboutsummaryrefslogtreecommitdiffstats
path: root/init/Makefile
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-12-22 01:12:01 -0800
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-22 08:55:51 -0800
commitef129412b4cbd6686d0749612cb9b76e207271f4 (patch)
tree54492763733c957405d938a74fb0ac99da927f9b /init/Makefile
parent[PATCH] sched: fix bad missed wakeups in the i386, x86_64, ia64, ACPI and APM idle code (diff)
downloadlinux-dev-ef129412b4cbd6686d0749612cb9b76e207271f4.tar.xz
linux-dev-ef129412b4cbd6686d0749612cb9b76e207271f4.zip
[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 '')
-rw-r--r--init/Makefile9
1 files changed, 0 insertions, 9 deletions
diff --git a/init/Makefile b/init/Makefile
index d6c764d0eabb..9cd871ce5784 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)"