diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-19 11:25:12 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 16:07:23 +0100 |
commit | 68a11a80051823fb158bb56d2390c40a4824656d (patch) | |
tree | b3f3eb00ef67b839b8f974d59e64d64b03513f60 /meta/recipes-core | |
parent | 6cfed59323ce51909bbf2c8efbceb50e67835eb7 (diff) | |
download | poky-68a11a80051823fb158bb56d2390c40a4824656d.tar.gz |
meta-environment: Ensure we append to the default TOOLCHAIN_NEED_CONFIGSITE_CACHE
The toolchain-scripts class was changed to assign to the variable using ??=
which allows users to override it. We therefore need to _append instead
of += to have the change take effect as intended.
(From OE-Core rev: d589777a4d423b1f0c9953900bd79772d15ee4af)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/meta-environment.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/meta-environment.bb b/meta/recipes-core/meta/meta-environment.bb index 5d72e38e91..49d45f6ec4 100644 --- a/meta/recipes-core/meta/meta-environment.bb +++ b/meta/recipes-core/meta/meta-environment.bb | |||
@@ -11,7 +11,7 @@ MODIFYTOS = "0" | |||
11 | REAL_MULTIMACH_TARGET_SYS = "${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}" | 11 | REAL_MULTIMACH_TARGET_SYS = "${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}" |
12 | 12 | ||
13 | inherit toolchain-scripts | 13 | inherit toolchain-scripts |
14 | TOOLCHAIN_NEED_CONFIGSITE_CACHE += "zlib" | 14 | TOOLCHAIN_NEED_CONFIGSITE_CACHE_append = " zlib" |
15 | 15 | ||
16 | SDK_DIR = "${WORKDIR}/sdk" | 16 | SDK_DIR = "${WORKDIR}/sdk" |
17 | SDK_OUTPUT = "${SDK_DIR}/image" | 17 | SDK_OUTPUT = "${SDK_DIR}/image" |