diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-20 16:55:46 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-22 11:42:24 +0100 |
commit | 655654de6267e6641df406fa65c1c0b3a34fb5a1 (patch) | |
tree | 01d8d71cff573d85a0821a99711aa04083a9d11c | |
parent | a92bce83e494608b172c0a99005891aa2355bf4c (diff) | |
download | poky-655654de6267e6641df406fa65c1c0b3a34fb5a1.tar.gz |
gtk-doc: Ensure we run gtkdocize else we could see build failures (e.g. evolution-data-server)
This is a fix to Ross' series, we need to run gtkdocize in case anything
was built from source control and the appropriate files are missing.
(From OE-Core rev: aaf762bf20635a92d16e7aad6c154891d9d689c4)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/gtk-doc.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index 603b1916a9..8a312f5b2f 100644 --- a/meta/classes/gtk-doc.bbclass +++ b/meta/classes/gtk-doc.bbclass | |||
@@ -14,3 +14,7 @@ EXTRA_OECONF_append = "\ | |||
14 | --disable-gtk-doc-html \ | 14 | --disable-gtk-doc-html \ |
15 | --disable-gtk-doc-pdf \ | 15 | --disable-gtk-doc-pdf \ |
16 | " | 16 | " |
17 | |||
18 | do_configure_prepend () { | ||
19 | gtkdocize | ||
20 | } | ||