From patchwork Thu Oct 11 21:30:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: gtk-doc.bbclass: Run gtkdocize in ${S} not ${B} Date: Thu, 11 Oct 2012 21:30:29 -0000 From: Phil Blundell X-Patchwork-Id: 38101 Message-Id: <1349991029.4470.74.camel@x121e.pbcl.net> To: oe-core Otherwise it will fail if these two directories are not the same. Signed-off-by: Phil Blundell --- meta/classes/gtk-doc.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index 59063b0..eaa1385 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 ) }