Skip to content

Commit

Permalink
[PATCH] respect srctree/objtree in Documentation/DocBook/Makefile
Browse files Browse the repository at this point in the history
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.

Acked-by: "Randy.Dunlap" <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Mike Frysinger authored and Linus Torvalds committed Dec 30, 2006
1 parent 089e34b commit 829ad75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Documentation/DocBook/Makefile
Expand Up @@ -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
Expand Down

0 comments on commit 829ad75

Please sign in to comment.