mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +01:00
Fic the class to handle recipes which set B to somewhere other than S. (From OE-Core rev: 9d88baea4f3668612c76201c306ec6efe72c281e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
682 B
Plaintext
23 lines
682 B
Plaintext
# Helper class to pull in the right gtk-doc dependencies and disable
|
|
# gtk-doc.
|
|
#
|
|
# Long-term it would be great if this class could be toggled between
|
|
# gtk-doc-stub-native and the real gtk-doc-native, which would enable
|
|
# re-generation of documentation. For now, we'll make do with this which
|
|
# packages up any existing documentation (so from tarball builds).
|
|
|
|
# The documentation directory, where the infrastructure will be copied.
|
|
GTKDOC_DOCDIR ?= "${B}"
|
|
|
|
DEPENDS_append = " gtk-doc-stub-native"
|
|
|
|
EXTRA_OECONF_append = "\
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf \
|
|
"
|
|
|
|
do_configure_prepend () {
|
|
( cd ${S}; gtkdocize --docdir ${GTKDOC_DOCDIR} )
|
|
}
|