diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2006-12-29 19:49:07 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-30 13:56:43 -0500 |
commit | 829ad751ab3e369ee85af83f1dee45640d3e2d29 (patch) | |
tree | 8615fb7b1e7bb2391255be640cef2551831d379a /Documentation/DocBook/Makefile | |
parent | 089e34b60033863549fbe561d31ac8c778a20e7f (diff) |
[PATCH] respect srctree/objtree in Documentation/DocBook/Makefile
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>
Diffstat (limited to 'Documentation/DocBook/Makefile')
-rw-r--r-- | Documentation/DocBook/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile index 36526a1e76d7..867608ab3ca0 100644 --- a/Documentation/DocBook/Makefile +++ b/Documentation/DocBook/Makefile | |||
@@ -53,8 +53,8 @@ installmandocs: mandocs | |||
53 | 53 | ||
54 | ### | 54 | ### |
55 | #External programs used | 55 | #External programs used |
56 | KERNELDOC = scripts/kernel-doc | 56 | KERNELDOC = $(srctree)/scripts/kernel-doc |
57 | DOCPROC = scripts/basic/docproc | 57 | DOCPROC = $(objtree)/scripts/basic/docproc |
58 | 58 | ||
59 | XMLTOFLAGS = -m $(srctree)/Documentation/DocBook/stylesheet.xsl | 59 | XMLTOFLAGS = -m $(srctree)/Documentation/DocBook/stylesheet.xsl |
60 | #XMLTOFLAGS += --skip-validation | 60 | #XMLTOFLAGS += --skip-validation |