From: Stefan Stanacar Date: Wed, 13 Jun 2018 19:56:03 +0000 (+0000) Subject: default-versions.inc: use weak assignments to allow overwrite X-Git-Tag: uninative-2.2~374 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b9fb89fb7189e631b615868d567e1eab504ee3c2;p=openembedded-core.git 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 Signed-off-by: Richard Purdie --- 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.%"