]> code.ossystems Code Review - openembedded-core.git/commitdiff
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:03:28 +0000 (12:03 +0100)
Otherwise it will fail if these two directories are not the same.

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

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