mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
gtk-doc: always inherit python3native
My attempt at only inheriting python3native if it was needed was broken and didn't work, so back it out and always inherit. (From OE-Core rev: eb08ce66cf7ca6dbdb51fb9b9725267606fba6b9) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
508ab8b836
commit
29c6083d1f
@@ -28,10 +28,8 @@ GTKDOC_DOCDIR ?= "${S}"
|
||||
|
||||
export STAGING_DIR_HOST
|
||||
|
||||
inherit ${@oe.utils.ifelse(d.getVar('GTKDOC_ENABLED') == 'True', 'python3native', '')}
|
||||
|
||||
inherit pkgconfig qemu
|
||||
DEPENDS_append = "${@oe.utils.ifelse(d.getVar('GTKDOC_ENABLED') == 'True', ' qemu-native', '')}"
|
||||
inherit python3native pkgconfig qemu
|
||||
DEPENDS_append = "${@' qemu-native' if d.getVar('GTKDOC_ENABLED') == 'True' else ''}"
|
||||
|
||||
do_configure_prepend () {
|
||||
( cd ${S}; gtkdocize --docdir ${GTKDOC_DOCDIR} || true )
|
||||
|
||||
Reference in New Issue
Block a user