diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/gtk-doc.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index eaa1385d9d..f7ba78847a 100644 --- a/meta/classes/gtk-doc.bbclass +++ b/meta/classes/gtk-doc.bbclass | |||
@@ -6,6 +6,9 @@ | |||
6 | # re-generation of documentation. For now, we'll make do with this which | 6 | # re-generation of documentation. For now, we'll make do with this which |
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. | ||
10 | GTKDOC_DOCDIR ?= "${S}" | ||
11 | |||
9 | DEPENDS_append = " gtk-doc-stub-native" | 12 | DEPENDS_append = " gtk-doc-stub-native" |
10 | 13 | ||
11 | EXTRA_OECONF_append = "\ | 14 | EXTRA_OECONF_append = "\ |
@@ -15,5 +18,5 @@ EXTRA_OECONF_append = "\ | |||
15 | " | 18 | " |
16 | 19 | ||
17 | do_configure_prepend () { | 20 | do_configure_prepend () { |
18 | ( cd ${S} && gtkdocize ) | 21 | gtkdocize --docdir ${GTKDOC_DOCDIR} |
19 | } | 22 | } |