diff options
author | Stefan Stanacar <sstncr@gmail.com> | 2018-06-13 19:56:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-18 11:07:57 +0100 |
commit | 37ae135dc0badd775ee8042e3264db2be6621a46 (patch) | |
tree | f1b234a002c7abe96feff24bfeb56fd51231346a /meta/conf | |
parent | 927c2669c501fe552f7ce092cb46eb773660c5bd (diff) | |
download | poky-37ae135dc0badd775ee8042e3264db2be6621a46.tar.gz |
default-versions.inc: use weak assignments to allow overwrite
default-versions.inc is included by defaultsetup.conf which in bitbake.conf
is included after local/machine/distro.conf.
If these are hard assignments distros can's overwrite them.
(From OE-Core rev: b9fb89fb7189e631b615868d567e1eab504ee3c2)
Signed-off-by: Stefan Stanacar <sstncr@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-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.%" |