diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-10-13 11:04:23 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-13 11:35:39 -0400 |
commit | 0e7af8d04ecb4f6ba8cd1f731f036a004ad0e174 (patch) | |
tree | b3e3a8ac99b6ab265858b616a7f750e871c524ed /Makefile | |
parent | e0fafda36a2fc5ecf8d11771f6c01c523b2a1fd8 (diff) |
[PATCH] Fix headers_check for O= builds; disable automatic check on UML.
* make header_check work with O=
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -742,7 +742,7 @@ endif # ifdef CONFIG_KALLSYMS | |||
742 | # vmlinux image - including updated kernel symbols | 742 | # vmlinux image - including updated kernel symbols |
743 | vmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) $(kallsyms.o) FORCE | 743 | vmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) $(kallsyms.o) FORCE |
744 | ifdef CONFIG_HEADERS_CHECK | 744 | ifdef CONFIG_HEADERS_CHECK |
745 | $(Q)$(MAKE) headers_check | 745 | $(Q)$(MAKE) -f $(srctree)/Makefile headers_check |
746 | endif | 746 | endif |
747 | $(call if_changed_rule,vmlinux__) | 747 | $(call if_changed_rule,vmlinux__) |
748 | $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@ | 748 | $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@ |
@@ -935,7 +935,7 @@ headers_install_all: include/linux/version.h scripts_basic FORCE | |||
935 | 935 | ||
936 | PHONY += headers_install | 936 | PHONY += headers_install |
937 | headers_install: include/linux/version.h scripts_basic FORCE | 937 | headers_install: include/linux/version.h scripts_basic FORCE |
938 | @if [ ! -r include/asm-$(ARCH)/Kbuild ]; then \ | 938 | @if [ ! -r $(srctree)/include/asm-$(ARCH)/Kbuild ]; then \ |
939 | echo '*** Error: Headers not exportable for this architecture ($(ARCH))'; \ | 939 | echo '*** Error: Headers not exportable for this architecture ($(ARCH))'; \ |
940 | exit 1 ; fi | 940 | exit 1 ; fi |
941 | $(Q)$(MAKE) $(build)=scripts scripts/unifdef | 941 | $(Q)$(MAKE) $(build)=scripts scripts/unifdef |