All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][sumo] make PREFERRED_VERSION_openssl* overwritable on sumo
@ 2018-11-27 13:19 Stefan Lendl
  0 siblings, 0 replies; only message in thread
From: Stefan Lendl @ 2018-11-27 13:19 UTC (permalink / raw)
  To: poky; +Cc: Stefan Lendl

From: Stefan Lendl <ste.lendl@gmail.com>

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.
---
 meta/conf/distro/include/default-versions.inc | 6 +++---
 1 file 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 @@
 # Default preferred versions
 #
 
-PREFERRED_VERSION_openssl = "1.0.%"
-PREFERRED_VERSION_openssl-native = "1.0.%"
-PREFERRED_VERSION_nativesdk-openssl = "1.0.%"
+PREFERRED_VERSION_openssl ?= "1.0.%"
+PREFERRED_VERSION_openssl-native ?= "1.0.%"
+PREFERRED_VERSION_nativesdk-openssl ?= "1.0.%"
-- 
2.14.5



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-11-27 13:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-27 13:19 [PATCH][sumo] make PREFERRED_VERSION_openssl* overwritable on sumo Stefan Lendl

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.