diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-05 16:47:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-05 17:13:51 +0000 |
commit | 0f62ff3b2c0aa357ceda0ac1f2c0be2bdc38f208 (patch) | |
tree | 2b6ab12a1dd6bb6ef3256ebed926d78573deb4c5 | |
parent | c8fa23f3e3ee94ff4df87d522f9db381e57c6af5 (diff) | |
download | poky-0f62ff3b2c0aa357ceda0ac1f2c0be2bdc38f208.tar.gz |
gtk-doc: Fix B verses S issues
Fic the class to handle recipes which set B to somewhere other than S.
(From OE-Core rev: 9d88baea4f3668612c76201c306ec6efe72c281e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/gtk-doc.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index f7ba78847a..4e0bd88002 100644 --- a/meta/classes/gtk-doc.bbclass +++ b/meta/classes/gtk-doc.bbclass | |||
@@ -7,7 +7,7 @@ | |||
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. |
10 | GTKDOC_DOCDIR ?= "${S}" | 10 | GTKDOC_DOCDIR ?= "${B}" |
11 | 11 | ||
12 | DEPENDS_append = " gtk-doc-stub-native" | 12 | DEPENDS_append = " gtk-doc-stub-native" |
13 | 13 | ||
@@ -18,5 +18,5 @@ EXTRA_OECONF_append = "\ | |||
18 | " | 18 | " |
19 | 19 | ||
20 | do_configure_prepend () { | 20 | do_configure_prepend () { |
21 | gtkdocize --docdir ${GTKDOC_DOCDIR} | 21 | ( cd ${S}; gtkdocize --docdir ${GTKDOC_DOCDIR} ) |
22 | } | 22 | } |