From: Richard Purdie Date: Fri, 20 Jul 2012 15:55:46 +0000 (+0100) Subject: gtk-doc: Ensure we run gtkdocize else we could see build failures (e.g. evolution... X-Git-Tag: 2015-4~9834 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=aaf762bf20635a92d16e7aad6c154891d9d689c4;p=openembedded-core.git 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. Signed-off-by: Richard Purdie --- 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 = "\ --disable-gtk-doc-html \ --disable-gtk-doc-pdf \ " + +do_configure_prepend () { + gtkdocize +}