poky/meta/classes/texinfo.bbclass
Richard Purdie bb6ddc3691 Convert to new override syntax
This is the result of automated script conversion:

scripts/contrib/convert-overrides.py <oe-core directory>

converting the metadata to use ":" as the override character instead of "_".

(From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-08-02 15:44:10 +01:00

19 lines
936 B
Plaintext

# This class is inherited by recipes whose upstream packages invoke the
# texinfo utilities at build-time. Native and cross recipes are made to use the
# dummy scripts provided by texinfo-dummy-native, for improved performance.
# Target architecture recipes use the genuine Texinfo utilities. By default,
# they use the Texinfo utilities on the host system. If you want to use the
# Texinfo recipe, you can remove texinfo-native from ASSUME_PROVIDED and
# makeinfo from SANITY_REQUIRED_UTILITIES.
TEXDEP = "${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation', 'texinfo-replacement-native', 'texinfo-dummy-native', d)}"
TEXDEP:class-native = "texinfo-dummy-native"
TEXDEP:class-cross = "texinfo-dummy-native"
TEXDEP:class-crosssdk = "texinfo-dummy-native"
TEXDEP:class-cross-canadian = "texinfo-dummy-native"
DEPENDS:append = " ${TEXDEP}"
# libtool-cross doesn't inherit cross
TEXDEP:pn-libtool-cross = "texinfo-dummy-native"