The patch titled respect srctree/objtree in Documentation/DocBook/Makefile has been added to the -mm tree. Its filename is respect-srctree-objtree-in-documentation-docbook-makefile.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: respect srctree/objtree in Documentation/DocBook/Makefile From: "Mike Frysinger" <vapier.adi@xxxxxxxxx> The KERNELDOC and DOCPROC variables are relative to the $(srctree)/$(objtree) and expect to be run only from there ... attached patch adds proper srctree/objtree prefixes to both variables. Cc: "Randy.Dunlap" <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- Documentation/DocBook/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN Documentation/DocBook/Makefile~respect-srctree-objtree-in-documentation-docbook-makefile Documentation/DocBook/Makefile --- a/Documentation/DocBook/Makefile~respect-srctree-objtree-in-documentation-docbook-makefile +++ a/Documentation/DocBook/Makefile @@ -53,8 +53,8 @@ installmandocs: mandocs ### #External programs used -KERNELDOC = scripts/kernel-doc -DOCPROC = scripts/basic/docproc +KERNELDOC = $(srctree)/scripts/kernel-doc +DOCPROC = $(objtree)/scripts/basic/docproc XMLTOFLAGS = -m $(srctree)/Documentation/DocBook/stylesheet.xsl #XMLTOFLAGS += --skip-validation _ Patches currently in -mm which might be from vapier.adi@xxxxxxxxx are search-a-little-harder-for-mkimage.patch scrub-non-__glibc__-checks-in-linux-socketh-and-linux-stath.patch respect-srctree-objtree-in-documentation-docbook-makefile.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