The patch titled kbuild: more headers_check fix for non-in-tree builds has been added to the -mm tree. Its filename is kbuild-more-headers_check-fix-for-non-in-tree-builds.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: kbuild: more headers_check fix for non-in-tree builds From: Oleg Verych <olecom@xxxxxxxxxxxxxx> "'objhdr-y' are generated files", thus they are not in $(srctree). Kbuild.include already included in root Makefile. Signed-off-by: Oleg Verych <olecom@xxxxxxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- scripts/Makefile.headersinst | 4 +--- 1 files changed, 1 insertion(+), 3 deletions(-) diff -puN scripts/Makefile.headersinst~kbuild-more-headers_check-fix-for-non-in-tree-builds scripts/Makefile.headersinst --- a/scripts/Makefile.headersinst~kbuild-more-headers_check-fix-for-non-in-tree-builds +++ a/scripts/Makefile.headersinst @@ -39,8 +39,6 @@ endif include $(KBUILDFILES) -include scripts/Kbuild.include - # If this is include/asm-$(ARCH) and there's no $(ALTARCH), then # override $(_dst) so that we install to include/asm directly. # Unless $(BIASMDIR) is set, in which case we're probably doing @@ -168,7 +166,7 @@ $(objhdr-y) $(header-y) $(unifdef-y): $( $(call cmd,gen) else -$(objhdr-y) : $(INSTALL_HDR_PATH)/$(_dst)/%.h: $(objtree)/$(obj)/%.h $(KBUILDFILES) +$(objhdr-y) : $(INSTALL_HDR_PATH)/$(_dst)/%.h: $(obj)/%.h $(KBUILDFILES) $(call cmd,o_hdr_install) $(header-y) : $(INSTALL_HDR_PATH)/$(_dst)/%.h: $(srctree)/$(obj)/%.h $(KBUILDFILES) _ Patches currently in -mm which might be from olecom@xxxxxxxxxxxxxx are kbuild-more-headers_check-fix-for-non-in-tree-builds.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html