summaryrefslogtreecommitdiffstats
path: root/Documentation-kdbus-fix-out-of-tree-builds.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation-kdbus-fix-out-of-tree-builds.patch')
-rw-r--r--Documentation-kdbus-fix-out-of-tree-builds.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation-kdbus-fix-out-of-tree-builds.patch b/Documentation-kdbus-fix-out-of-tree-builds.patch
new file mode 100644
index 00000000..bf9cf839
--- /dev/null
+++ b/Documentation-kdbus-fix-out-of-tree-builds.patch
@@ -0,0 +1,27 @@
+From: David Herrmann <dh.herrmann@gmail.com>
+Date: Mon, 16 Mar 2015 10:17:11 +0100
+Subject: [PATCH] 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>
+---
+ Documentation/kdbus/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Documentation/kdbus/Makefile b/Documentation/kdbus/Makefile
+index f6d491251c25..d8e6bf37d53b 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) $<