[oe-commits] [openembedded-core] 12/53: default-versions.inc: use weak assignments to allow overwrite

git at git.openembedded.org git at git.openembedded.org
Sat Jun 16 14:25:38 UTC 2018


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

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

commit af9cb42d945b25e92aac04a219308e1fb551f22c
Author: Stefan Stanacar <sstncr at gmail.com>
AuthorDate: Wed Jun 13 19:56:03 2018 +0000

    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.
    
    Signed-off-by: Stefan Stanacar <sstncr at gmail.com>
    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