diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-07 22:46:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-07 22:46:50 -0400 |
commit | 1ff5e37e727be2f575d1a672a1bc4c2595b4752e (patch) | |
tree | 7a64165d7ca0f1dc813d98efcbe4898e28a8cdc1 /Makefile | |
parent | e7d33bb5ea82922e6ddcfc6b28a630b1a4ced071 (diff) | |
parent | 0d0e7718a9da789dec7932b7411ab16047540c4f (diff) |
Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild update from Michal Marek:
"Only these two commits are in the kbuild branch this time:
- Using filechk for include/config/kernel.release
- Cleanup in scripts/sortextable.c"
* 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
kbuild: Do not overwrite include/config/kernel.release needlessly
scripts: remove unused function in sortextable.c
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -794,10 +794,13 @@ PHONY += $(vmlinux-dirs) | |||
794 | $(vmlinux-dirs): prepare scripts | 794 | $(vmlinux-dirs): prepare scripts |
795 | $(Q)$(MAKE) $(build)=$@ | 795 | $(Q)$(MAKE) $(build)=$@ |
796 | 796 | ||
797 | define filechk_kernel.release | ||
798 | echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))" | ||
799 | endef | ||
800 | |||
797 | # Store (new) KERNELRELEASE string in include/config/kernel.release | 801 | # Store (new) KERNELRELEASE string in include/config/kernel.release |
798 | include/config/kernel.release: include/config/auto.conf FORCE | 802 | include/config/kernel.release: include/config/auto.conf FORCE |
799 | $(Q)rm -f $@ | 803 | $(call filechk,kernel.release) |
800 | $(Q)echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))" > $@ | ||
801 | 804 | ||
802 | 805 | ||
803 | # Things we need to do before we recursively start building the kernel | 806 | # Things we need to do before we recursively start building the kernel |