diff mbox

[1/4] version.h: Make it clear where the files was generated

Message ID 1445959842-1960-2-git-send-email-hofrat@osadl.org (mailing list archive)
State New, archived
Headers show

Commit Message

Nicholas Mc Guire Oct. 27, 2015, 3:30 p.m. UTC
Add a comment string in include/generated/uapi/linux/version.h that it was
generated by the top level Makefile

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
---
This is no actual code change - compile-testing should thus do

Compile tested with x86_64_defconfig

Patch is against 4.3-rc6 (localversion-next is  -next-20151022)

 Makefile |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/Makefile b/Makefile
index 1fdd906..8823501 100644
--- a/Makefile
+++ b/Makefile
@@ -1021,7 +1021,8 @@  define filechk_utsrelease.h
 endef
 
 define filechk_version.h
-	(echo \#define LINUX_VERSION_CODE $(shell                         \
+	(echo '/* Generated by top level Makefile */';                    \
+	echo \#define LINUX_VERSION_CODE $(shell                          \
 	expr $(VERSION) \* 65536 + 0$(PATCHLEVEL) \* 256 + 0$(SUBLEVEL)); \
 	echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';)
 endef