diff options
author | Max Eliaser <max.eliaser@intel.com> | 2014-06-10 13:24:16 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-13 12:31:38 +0100 |
commit | d58401cac56e6991361f785596efd21e140e3448 (patch) | |
tree | 8c3a5bbe93b4cba2576b98055b920b9751ccdaa7 /meta/classes | |
parent | 0a4ba77f66aff34fe7781f209cea9a012ff9d8e5 (diff) | |
download | poky-d58401cac56e6991361f785596efd21e140e3448.tar.gz |
texinfo.bbclass: native/cross uses dummy texinfo; target uses host's Texinfo.
To unpack that to more than a single line: -native and -cross recipes are made
to use the dummy Texinfo utilities provided by texinfo-dummy-native if they
invoke those utilities at build time. The target-architecture (cross-compiled)
recipes still use the genuine Texinfo utilites. Right now, they still use
the host system's Texinfo utilities, but could be made to use the
texinfo-native recipe we already ship with some config file changes.
(From OE-Core rev: 160087f754eabf5da90fb51997e19d2e585aac4a)
Signed-off-by: Max Eliaser <max.eliaser@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/texinfo.bbclass | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/meta/classes/texinfo.bbclass b/meta/classes/texinfo.bbclass index 60cba0f81d..92efbccddf 100644 --- a/meta/classes/texinfo.bbclass +++ b/meta/classes/texinfo.bbclass | |||
@@ -1,2 +1,15 @@ | |||
1 | # This class is inherited by recipes whose upstream packages invoke the | 1 | # This class is inherited by recipes whose upstream packages invoke the |
2 | # texinfo utilities at build-time. This class currently does nothing. | 2 | # texinfo utilities at build-time. Native and cross recipes are made to use the |
3 | # dummy scripts provided by texinfo-dummy-native, for improved performance. | ||
4 | # Target architecture recipes use the genuine Texinfo utilities. By default, | ||
5 | # they use the Texinfo utilities on the host system. If you want to use the | ||
6 | # Texinfo recipe shipped with yoco, you can remove texinfo-native from | ||
7 | # ASSUME_PROVIDED and makeinfo from SANITY_REQUIRED_UTILITIES. | ||
8 | |||
9 | TEXDEP = "texinfo-native" | ||
10 | TEXDEP_class-native = "texinfo-dummy-native" | ||
11 | TEXDEP_class-cross = "texinfo-dummy-native" | ||
12 | DEPENDS_append = " ${TEXDEP}" | ||
13 | PATH_prepend_class-native = "${STAGING_BINDIR_NATIVE}/texinfo-dummy-native:" | ||
14 | PATH_prepend_class-cross = "${STAGING_BINDIR_NATIVE}/texinfo-dummy-native:" | ||
15 | |||