From: Phil Blundell Date: Thu, 11 Oct 2012 21:30:29 +0000 (+0100) Subject: gtk-doc.bbclass: Run gtkdocize in ${S} not ${B} X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2be7032d63c1c8e7e6891611dba4209d6cac6240;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git gtk-doc.bbclass: Run gtkdocize in ${S} not ${B} Otherwise it will fail if these two directories are not the same. (From OE-Core rev: 491823fdc65d124093f1fed5a56173917443e1d6) Signed-off-by: Phil Blundell Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index 59063b00f23..eaa1385d9d8 100644 --- a/meta/classes/gtk-doc.bbclass +++ b/meta/classes/gtk-doc.bbclass @@ -15,5 +15,5 @@ EXTRA_OECONF_append = "\ " do_configure_prepend () { - gtkdocize + ( cd ${S} && gtkdocize ) }