[oe-commits] [openembedded-core] branch sumo-next updated: default-versions.inc: Make PREFERRED_VERSION_openssl* overwritable

git at git.openembedded.org git at git.openembedded.org
Thu Dec 6 16:28:28 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch sumo-next
in repository openembedded-core.

The following commit(s) were added to refs/heads/sumo-next by this push:
     new c9786ad  default-versions.inc: Make PREFERRED_VERSION_openssl* overwritable
c9786ad is described below

commit c9786adf81434e2d58247f55cf80fdd3131121e7
Author: Stefan Lendl <ste.lendl at gmail.com>
AuthorDate: Tue Nov 27 14:19:45 2018 +0100

    default-versions.inc: Make PREFERRED_VERSION_openssl* overwritable
    
    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.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 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 8680738..3d88e8f 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.%"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list