diff options
author | Jan Beulich <jbeulich@novell.com> | 2006-02-22 13:29:04 +0100 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-02-22 21:29:27 +0100 |
commit | c3f9da90b6e63c968070aa72057fe15356b3f7b5 (patch) | |
tree | 20ca7565dd33db629e21b5dae3d03f1b8f598003 /Makefile | |
parent | 6e10133fa4b2366e8ef18bc2ce34afe727b1c4ba (diff) | |
download | linux-3.10-c3f9da90b6e63c968070aa72057fe15356b3f7b5.tar.gz linux-3.10-c3f9da90b6e63c968070aa72057fe15356b3f7b5.tar.bz2 linux-3.10-c3f9da90b6e63c968070aa72057fe15356b3f7b5.zip |
kbuild: version.h should depend on .kernelrelease
Rebuilding a previously built tree while using make's -j options from time to
time results in the version.h check running at the same time as the updating
of .kernelrelease, resulting in UTS_RELEASE remaining an empty string (and as
a side effect causing the entire kernel to be rebuilt).
Signed-Off-By: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -852,7 +852,7 @@ define filechk_version.h ) endef -include/linux/version.h: $(srctree)/Makefile .config FORCE +include/linux/version.h: $(srctree)/Makefile .config .kernelrelease FORCE $(call filechk,version.h) # --------------------------------------------------------------------------- |