summaryrefslogtreecommitdiffstats
path: root/meta/classes/gtk-doc.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-07-04 15:37:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-10 09:42:01 +0100
commit9190cfd0a3c2244cd5fcb5e4a14c5c230b1161b3 (patch)
treea16cbbe4d8198c0e903fbb36506fd575aef9dc2b /meta/classes/gtk-doc.bbclass
parent4b0ab26071909713e7b21ac4a544e6641139f8cd (diff)
downloadpoky-9190cfd0a3c2244cd5fcb5e4a14c5c230b1161b3.tar.gz
gtkdoc: set the default docdir to ${S}, not ${B}
Previously these directories were the same location, but with seperatebuilddir.inc they are not and putting the file into ${B} means it goes to the wrong place for autoreconf. (From OE-Core rev: 6f06c6b220c05b6aca9d2d21f528d4e1b5e417d0) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/gtk-doc.bbclass')
-rw-r--r--meta/classes/gtk-doc.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass
index 4e0bd88002..fb7863e99b 100644
--- a/meta/classes/gtk-doc.bbclass
+++ b/meta/classes/gtk-doc.bbclass
@@ -7,7 +7,8 @@
7# packages up any existing documentation (so from tarball builds). 7# packages up any existing documentation (so from tarball builds).
8 8
9# The documentation directory, where the infrastructure will be copied. 9# The documentation directory, where the infrastructure will be copied.
10GTKDOC_DOCDIR ?= "${B}" 10# gtkdocize has a default of "." so to handle out-of-tree builds set this to $S.
11GTKDOC_DOCDIR ?= "${S}"
11 12
12DEPENDS_append = " gtk-doc-stub-native" 13DEPENDS_append = " gtk-doc-stub-native"
13 14