diff options
author | Phil Blundell <philb@gnu.org> | 2012-10-11 22:30:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-18 12:13:47 +0100 |
commit | 2be7032d63c1c8e7e6891611dba4209d6cac6240 (patch) | |
tree | 207e51f42cfd67b50e0fb629cfed536b9d4f475e | |
parent | ef9eac29a5fdd612fb663419c039381182af9ee2 (diff) | |
download | poky-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>
-rw-r--r-- | meta/classes/gtk-doc.bbclass | 2 |
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 | ||
17 | do_configure_prepend () { | 17 | do_configure_prepend () { |
18 | gtkdocize | 18 | ( cd ${S} && gtkdocize ) |
19 | } | 19 | } |