diff options
author | Stefan Lendl <ste.lendl@gmail.com> | 2018-11-27 14:19:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-06 16:26:52 +0000 |
commit | 182e8eec6dd24e0f8e256bfbac704924c7c94a67 (patch) | |
tree | 80433e42d31c003bf7077d60022848eaeb139661 | |
parent | fffac6b38a56f636e5a916696a2fbe7c6dfb70b2 (diff) | |
download | poky-182e8eec6dd24e0f8e256bfbac704924c7c94a67.tar.gz |
make PREFERRED_VERSION_openssl* overwritable on sumorocko-next
defaultsetup.conf and therefore default-versions.inc is sourced pretty late in bitbake.conf.
default-versions.inc overwrites previous assignments of PREFERRED_VERSION_openssl.
Assigning it with ?= allows other .conf files to assign correctly.
in particular assignment in conf/local.conf and machine config is used instead of default.
(From OE-Core rev: dc69018e3be64c244b4b97d81f1f1a1e9e552c10)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/distro/include/default-versions.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/conf/distro/include/default-versions.inc b/meta/conf/distro/include/default-versions.inc index 868073843a..3d88e8f656 100644 --- a/meta/conf/distro/include/default-versions.inc +++ b/meta/conf/distro/include/default-versions.inc | |||
@@ -2,6 +2,6 @@ | |||
2 | # Default preferred versions | 2 | # Default preferred versions |
3 | # | 3 | # |
4 | 4 | ||
5 | PREFERRED_VERSION_openssl = "1.0.%" | 5 | PREFERRED_VERSION_openssl ?= "1.0.%" |
6 | PREFERRED_VERSION_openssl-native = "1.0.%" | 6 | PREFERRED_VERSION_openssl-native ?= "1.0.%" |
7 | PREFERRED_VERSION_nativesdk-openssl = "1.0.%" | 7 | PREFERRED_VERSION_nativesdk-openssl ?= "1.0.%" |