summaryrefslogtreecommitdiff
path: root/Documentation/DocBook/Makefile
diff options
context:
space:
mode:
authorKevin Hao <haokexin@gmail.com>2014-04-01 14:36:10 +0800
committerMichal Marek <mmarek@suse.cz>2014-04-01 10:49:21 +0200
commitb12f73740b8764952a112a677991300545e98c06 (patch)
tree170b01a0c14928489921fbf494ca3f4ade7646ac /Documentation/DocBook/Makefile
parent1c9e70a55b088d97a59241744fe459409d0c3582 (diff)
kbuild: docbook: fix the include error when executing "make help"
The commit ec3fadd64b99 (kbuild: docbook: use $(obj) and $(src) rather than specific path) replaces the specific path with $(src). But when executing "make help", the $(src) is null and then causes an include error. Fix it by restoring the specific path. Signed-off-by: Kevin Hao <haokexin@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Documentation/DocBook/Makefile')
-rw-r--r--Documentation/DocBook/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile
index c19ebeaf280b..ca8fd2628a0f 100644
--- a/Documentation/DocBook/Makefile
+++ b/Documentation/DocBook/Makefile
@@ -16,7 +16,7 @@ DOCBOOKS := z8530book.xml device-drivers.xml \
alsa-driver-api.xml writing-an-alsa-driver.xml \
tracepoint.xml drm.xml media_api.xml
-include $(src)/media/Makefile
+include Documentation/DocBook/media/Makefile
###
# The build process is as follows (targets):