summaryrefslogtreecommitdiffstats
path: root/meta/classes/gtk-doc.bbclass
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2012-10-11 22:30:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-18 12:13:47 +0100
commit2be7032d63c1c8e7e6891611dba4209d6cac6240 (patch)
tree207e51f42cfd67b50e0fb629cfed536b9d4f475e /meta/classes/gtk-doc.bbclass
parentef9eac29a5fdd612fb663419c039381182af9ee2 (diff)
downloadpoky-2be7032d63c1c8e7e6891611dba4209d6cac6240.tar.gz
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 <pb@pbcl.net> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/gtk-doc.bbclass')
-rw-r--r--meta/classes/gtk-doc.bbclass2
1 files changed, 1 insertions, 1 deletions
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 = "\
15" 15"
16 16
17do_configure_prepend () { 17do_configure_prepend () {
18 gtkdocize 18 ( cd ${S} && gtkdocize )
19} 19}