* [PATCH] kbuild: Automatically remove stale <linux/version.h> file
@ 2014-11-27 15:38 Michal Marek
2014-11-28 15:40 ` Michal Marek
0 siblings, 1 reply; 2+ messages in thread
From: Michal Marek @ 2014-11-27 15:38 UTC (permalink / raw)
To: linux-kbuild; +Cc: linux-kernel, Paul Gortmaker, David Howells
In 3.7, the file moved from include/linux/ to
include/generated/uapi/linux/. The path in the #include directive
remained the same for compatibility reasons, but this created a problem
when bisecting. Commit 9c8cdb71 (kbuild: unconditionally clobber
include/linux/version.h on distclean) fixes this, provided the user does
make distclean between builds. Better not rely on the user and delete
the stale file each time make is invoked.
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
---
Makefile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 0032d1c..fc7a6d3 100644
--- a/Makefile
+++ b/Makefile
@@ -480,6 +480,7 @@ asm-generic:
# of make so .config is not included in this case either (for *config).
version_h := include/generated/uapi/linux/version.h
+old_version_h := include/linux/version.h
no-dot-config-targets := clean mrproper distclean \
cscope gtags TAGS tags help %docs check% coccicheck \
@@ -1004,6 +1005,7 @@ endef
$(version_h): $(srctree)/Makefile FORCE
$(call filechk,version.h)
+ $(Q)rm -f $(old_version_h)
include/generated/utsrelease.h: include/config/kernel.release FORCE
$(call filechk,utsrelease.h)
@@ -1172,7 +1174,7 @@ MRPROPER_FILES += .config .config.old .version .old_version $(version_h) \
Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \
signing_key.priv signing_key.x509 x509.genkey \
extra_certificates signing_key.x509.keyid \
- signing_key.x509.signer include/linux/version.h
+ signing_key.x509.signer
# clean - Delete most, but leave enough to build external modules
#
--
2.1.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] kbuild: Automatically remove stale <linux/version.h> file
2014-11-27 15:38 [PATCH] kbuild: Automatically remove stale <linux/version.h> file Michal Marek
@ 2014-11-28 15:40 ` Michal Marek
0 siblings, 0 replies; 2+ messages in thread
From: Michal Marek @ 2014-11-28 15:40 UTC (permalink / raw)
To: linux-kbuild; +Cc: linux-kernel, Paul Gortmaker, David Howells
On 2014-11-27 16:38, Michal Marek wrote:
> In 3.7, the file moved from include/linux/ to
> include/generated/uapi/linux/. The path in the #include directive
> remained the same for compatibility reasons, but this created a problem
> when bisecting. Commit 9c8cdb71 (kbuild: unconditionally clobber
> include/linux/version.h on distclean) fixes this, provided the user does
> make distclean between builds. Better not rely on the user and delete
> the stale file each time make is invoked.
I added this to kbuild.git#kbuild.
Michal
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-11-28 15:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-27 15:38 [PATCH] kbuild: Automatically remove stale <linux/version.h> file Michal Marek
2014-11-28 15:40 ` Michal Marek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox