diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-26 14:50:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-27 08:58:58 +0000 |
commit | 82d05e2ecadabc646e227b065e2bcac086ab6f34 (patch) | |
tree | 4ae5a261e07f2c1c6e8f9b63689265576ec6999b | |
parent | 0060427f4ec3041286858da25541bd69980fb85e (diff) | |
download | poky-82d05e2ecadabc646e227b065e2bcac086ab6f34.tar.gz |
bitbake.conf: Change build output message to list BUILD_SYS, TARGET_SYS and NATIVELSBSTRING
The build summary is meant to reflect key configuration variables. Information
about the build system we're running on is important but currently missing
from the information displayed.
Printing TARGET_SYS removes the need to print TARGET_OS and TARGET_ARCH
and we add BUILD_SYS and NATIVELSBSTRING to show information about the
build system.
[YOCTO #3456]
(From OE-Core rev: 764cc1eb3043c84121f597d2271108b91052095e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 114c5e7091..420bdfa31a 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -631,7 +631,7 @@ export PATCH_GET="0" | |||
631 | 631 | ||
632 | # Pre-build configuration output | 632 | # Pre-build configuration output |
633 | BUILDCFG_HEADER = "Build Configuration:" | 633 | BUILDCFG_HEADER = "Build Configuration:" |
634 | BUILDCFG_VARS = "BB_VERSION TARGET_ARCH TARGET_OS MACHINE DISTRO DISTRO_VERSION TUNE_FEATURES TARGET_FPU" | 634 | BUILDCFG_VARS = "BB_VERSION BUILD_SYS NATIVELSBSTRING TARGET_SYS MACHINE DISTRO DISTRO_VERSION TUNE_FEATURES TARGET_FPU" |
635 | BUILDCFG_VARS[type] = "list" | 635 | BUILDCFG_VARS[type] = "list" |
636 | BUILDCFG_NEEDEDVARS = "TARGET_ARCH TARGET_OS" | 636 | BUILDCFG_NEEDEDVARS = "TARGET_ARCH TARGET_OS" |
637 | BUILDCFG_NEEDEDVARS[type] = "list" | 637 | BUILDCFG_NEEDEDVARS[type] = "list" |