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

The class clearly intends build tools to depend upon the dummy texinfo, but it does so using the class-cross override for cross recipes, and libtool-cross doesn't inherit cross. Add a special case to cover this. (From OE-Core rev: 26343dc11725c4c15b78b8d45ff7d2fb8d35ef6e) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
965 B
Plaintext
19 lines
965 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 = "texinfo-native"
|
|
TEXDEP_class-native = "texinfo-dummy-native"
|
|
TEXDEP_class-cross = "texinfo-dummy-native"
|
|
DEPENDS_append = " ${TEXDEP}"
|
|
PATH_prepend_class-native = "${STAGING_BINDIR_NATIVE}/texinfo-dummy-native:"
|
|
PATH_prepend_class-cross = "${STAGING_BINDIR_NATIVE}/texinfo-dummy-native:"
|
|
|
|
# libtool-cross doesn't inherit cross
|
|
TEXDEP_pn-libtool-cross = "texinfo-dummy-native"
|
|
PATH_prepend_pn-libtool-cross = "${STAGING_BINDIR_NATIVE}/texinfo-dummy-native:"
|