summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2018-05-09 20:14:55 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-22 13:13:33 +0100
commit2811907b1aefa50cb44c1509996ca8e80c6a84f4 (patch)
tree5b146fa80f658feaa397a33186cb10d8225a894f /meta/conf/bitbake.conf
parent7ccd4a201c13a94f3af1bbf8d48ccb311e86b03b (diff)
downloadpoky-2811907b1aefa50cb44c1509996ca8e80c6a84f4.tar.gz
bitbake.conf: make libc over-ride lower priority than _forcevariable
Fix long standing quirk, _forcevariable is documented as being the highest priority over-ride. (From OE-Core rev: b3598b8f1ed1cdc7849e1e4f30d618e87e1bf582) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index a21b7282fb..a772cabdcf 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -735,7 +735,8 @@ DISTRO_NAME ??= "OpenEmbedded"
735# 735#
736# This works for functions as well, they are really just environment variables. 736# This works for functions as well, they are really just environment variables.
737# Default OVERRIDES to make compilation fail fast in case of build system misconfiguration. 737# Default OVERRIDES to make compilation fail fast in case of build system misconfiguration.
738OVERRIDES = "${TARGET_OS}:${TRANSLATED_TARGET_ARCH}:build-${BUILD_OS}:pn-${PN}:${MACHINEOVERRIDES}:${DISTROOVERRIDES}:${CLASSOVERRIDE}:forcevariable" 738OVERRIDES = "${TARGET_OS}:${TRANSLATED_TARGET_ARCH}:build-${BUILD_OS}:pn-${PN}:${MACHINEOVERRIDES}:${DISTROOVERRIDES}:${CLASSOVERRIDE}${LIBCOVERRIDE}:forcevariable"
739LIBCOVERRIDE ?= ""
739CLASSOVERRIDE ?= "class-target" 740CLASSOVERRIDE ?= "class-target"
740DISTROOVERRIDES ?= "${@d.getVar('DISTRO') or ''}" 741DISTROOVERRIDES ?= "${@d.getVar('DISTRO') or ''}"
741MACHINEOVERRIDES ?= "${MACHINE}" 742MACHINEOVERRIDES ?= "${MACHINE}"