diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -447,7 +447,7 @@ asm-generic: | |||
447 | # Detect when mixed targets is specified, and make a second invocation | 447 | # Detect when mixed targets is specified, and make a second invocation |
448 | # of make so .config is not included in this case either (for *config). | 448 | # of make so .config is not included in this case either (for *config). |
449 | 449 | ||
450 | version_h := include/generated/linux/version.h | 450 | version_h := include/generated/uapi/linux/version.h |
451 | 451 | ||
452 | no-dot-config-targets := clean mrproper distclean \ | 452 | no-dot-config-targets := clean mrproper distclean \ |
453 | cscope gtags TAGS tags help %docs check% coccicheck \ | 453 | cscope gtags TAGS tags help %docs check% coccicheck \ |
@@ -908,10 +908,10 @@ headers_install_all: | |||
908 | 908 | ||
909 | PHONY += headers_install | 909 | PHONY += headers_install |
910 | headers_install: __headers | 910 | headers_install: __headers |
911 | $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/asm/Kbuild),, \ | 911 | $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/uapi/asm/Kbuild),, \ |
912 | $(error Headers not exportable for the $(SRCARCH) architecture)) | 912 | $(error Headers not exportable for the $(SRCARCH) architecture)) |
913 | $(Q)$(MAKE) $(hdr-inst)=include | 913 | $(Q)$(MAKE) $(hdr-inst)=include/uapi |
914 | $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst) | 914 | $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst) |
915 | 915 | ||
916 | PHONY += headers_check_all | 916 | PHONY += headers_check_all |
917 | headers_check_all: headers_install_all | 917 | headers_check_all: headers_install_all |
@@ -919,8 +919,8 @@ headers_check_all: headers_install_all | |||
919 | 919 | ||
920 | PHONY += headers_check | 920 | PHONY += headers_check |
921 | headers_check: headers_install | 921 | headers_check: headers_install |
922 | $(Q)$(MAKE) $(hdr-inst)=include HDRCHECK=1 | 922 | $(Q)$(MAKE) $(hdr-inst)=include/uapi HDRCHECK=1 |
923 | $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst) HDRCHECK=1 | 923 | $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst) HDRCHECK=1 |
924 | 924 | ||
925 | # --------------------------------------------------------------------------- | 925 | # --------------------------------------------------------------------------- |
926 | # Modules | 926 | # Modules |