mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 14:59:41 +01:00
This is a fix to Ross' series, we need to run gtkdocize in case anything was built from source control and the appropriate files are missing. (From OE-Core rev: aaf762bf20635a92d16e7aad6c154891d9d689c4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
603 B
Plaintext
21 lines
603 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).
|
|
|
|
DEPENDS_append = " gtk-doc-stub-native"
|
|
DEPENDS_virtclass-native_append = " gtk-doc-stub-native"
|
|
|
|
EXTRA_OECONF_append = "\
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf \
|
|
"
|
|
|
|
do_configure_prepend () {
|
|
gtkdocize
|
|
}
|