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-Tag: 2015-4~8855 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=491823fdc65d124093f1fed5a56173917443e1d6;p=openembedded-core.git gtk-doc.bbclass: Run gtkdocize in ${S} not ${B} Otherwise it will fail if these two directories are not the same. Signed-off-by: Phil Blundell Signed-off-by: Saul Wold --- diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index 59063b00f2..eaa1385d9d 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 ) }