mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

see [1] & [2] for discussion of this patch [1] http://lists.linuxtogo.org/pipermail/openembedded-core/2012-July/026606.html [2] http://lists.linuxtogo.org/pipermail/openembedded-core/2012-July/026611.html (From OE-Core rev: f9ae930552bc5f1d59f207d4cd0e2b1b4f811dbc) Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
546 B
Plaintext
20 lines
546 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"
|
|
|
|
EXTRA_OECONF_append = "\
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf \
|
|
"
|
|
|
|
do_configure_prepend () {
|
|
gtkdocize
|
|
}
|