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: yocto-4.0~36215 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aaf762bf20635a92d16e7aad6c154891d9d689c4;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 603b1916a94..8a312f5b2f7 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 +}