gtk-doc.bbclass: Run gtkdocize in ${S} not ${B}
authorPhil Blundell <philb@gnu.org>
Thu, 11 Oct 2012 21:30:29 +0000 (22:30 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 18 Oct 2012 11:13:47 +0000 (12:13 +0100)
Otherwise it will fail if these two directories are not the same.

(From OE-Core rev: 491823fdc65d124093f1fed5a56173917443e1d6)

Signed-off-by: Phil Blundell <pb@pbcl.net>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/gtk-doc.bbclass

index 59063b0..eaa1385 100644 (file)
@@ -15,5 +15,5 @@ EXTRA_OECONF_append = "\
 "
 
 do_configure_prepend () {
-       gtkdocize
+       ( cd ${S} && gtkdocize )
 }