summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2015-03-16 10:17:11 +0100
committerMaciej Wereski <m.wereski@partner.samsung.com>2015-06-09 11:31:23 +0200
commit1d57bdb39d0dab7e7a39bb853800a0a0a1745ef7 (patch)
treebe92f50b06450e74a9ca7c4e2e5bf4cc28bcf497
parent8b71dde66e4a98a04c4d1fcfd4398b998ad32e1f (diff)
downloadlinux-3.10-1d57bdb39d0dab7e7a39bb853800a0a0a1745ef7.tar.gz
linux-3.10-1d57bdb39d0dab7e7a39bb853800a0a0a1745ef7.tar.bz2
linux-3.10-1d57bdb39d0dab7e7a39bb853800a0a0a1745ef7.zip
Documentation/kdbus: fix out-of-tree builds
Don't use $(obj) to access source files, but use $(srctree)/$(src)/ instead. This fixes build issues if you use O= with a directory other than the source directory. Signed-off-by: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--Documentation/kdbus/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/kdbus/Makefile b/Documentation/kdbus/Makefile
index f6d491251c2..d8e6bf37d53 100644
--- a/Documentation/kdbus/Makefile
+++ b/Documentation/kdbus/Makefile
@@ -15,7 +15,7 @@ XMLFILES := $(addprefix $(obj)/,$(DOCS))
MANFILES := $(patsubst %.xml, %.7, $(XMLFILES))
HTMLFILES := $(patsubst %.xml, %.html, $(XMLFILES))
-XMLTO_ARGS := -m $(obj)/stylesheet.xsl
+XMLTO_ARGS := -m $(srctree)/$(src)/stylesheet.xsl
%.7: %.xml
xmlto man $(XMLTO_ARGS) -o $(obj) $<