mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-07 08:24:42 +02:00
Don't let the recipe override the config by using ??=
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
This commit is contained in:
@@ -5,5 +5,5 @@ PREFERRED_PROVIDER_virtual/libiconv = "eglibc-sourcery"
|
||||
PREFERRED_PROVIDER_virtual/libintl = "eglibc-sourcery"
|
||||
PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}libc-for-gcc = "eglibc-sourcery"
|
||||
PREFERRED_PROVIDER_eglibc = "eglibc-sourcery"
|
||||
CSL_SRC_URI ??= "file://${CSL_SRC_FILE}"
|
||||
CSL_SRC_FILE ??= "${@bb.fatal('Please set CSL_SRC_FILE to the path to your sourcery src tarball')}"
|
||||
CSL_SRC_URI ?= "file://${CSL_SRC_FILE}"
|
||||
CSL_SRC_FILE ?= "${@bb.fatal('Please set CSL_SRC_FILE to the path to your sourcery src tarball')}"
|
||||
|
||||
@@ -5,7 +5,7 @@ PROVIDES += "eglibc"
|
||||
TOOLCHAIN_OPTIONS = ""
|
||||
|
||||
# sourceryg++-${CSL_VER_MAIN}-${CSL_TARGET_SYS}.src.tar.bz2
|
||||
CSL_SRC_URI ??= ""
|
||||
CSL_SRC_URI ?= ""
|
||||
SRC_URI = "${CSL_SRC_URI} \
|
||||
file://etc/ld.so.conf \
|
||||
file://generate-supported.mk"
|
||||
@@ -56,8 +56,8 @@ do_configure () {
|
||||
|
||||
require recipes/eglibc/eglibc-package-adjusted.inc
|
||||
|
||||
CSL_VER_MAIN ??= ""
|
||||
CSL_VER_LIBC ??= ""
|
||||
CSL_VER_MAIN ?= ""
|
||||
CSL_VER_LIBC ?= ""
|
||||
|
||||
python () {
|
||||
if not d.getVar("CSL_VER_MAIN"):
|
||||
|
||||
Reference in New Issue
Block a user