summaryrefslogtreecommitdiffstats
path: root/meta/classes/toolchain-scripts.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-04-15 14:13:22 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-04-15 14:30:18 +0100
commit59c09e3755f3ceabc7fc31af9346da3524e365e2 (patch)
tree9420f4a07c1544d8bd0e34679042c4385938002a /meta/classes/toolchain-scripts.bbclass
parent7fe5976f1cb8dc789349b1eaa211bfd713c8a548 (diff)
downloadpoky-59c09e3755f3ceabc7fc31af9346da3524e365e2.tar.gz
toolchain-scripts: Allow the CONFIGSITE_CACHE variable to be overridden
In multilib and baremetal configurations, this variable can cause a variety of problems due to the use of TCLIBC. At least allowing it to be overriden is a start and allows various configurations to avoid the issue. (From OE-Core rev: cfc43743b0e41cf168cad9cbd4e9d870b8f01f03) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/toolchain-scripts.bbclass')
-rw-r--r--meta/classes/toolchain-scripts.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/toolchain-scripts.bbclass b/meta/classes/toolchain-scripts.bbclass
index ea6aff0780..670e93b1de 100644
--- a/meta/classes/toolchain-scripts.bbclass
+++ b/meta/classes/toolchain-scripts.bbclass
@@ -98,7 +98,7 @@ EOF
98#we get the cached site config in the runtime 98#we get the cached site config in the runtime
99TOOLCHAIN_CONFIGSITE_NOCACHE = "${@siteinfo_get_files(d, True)}" 99TOOLCHAIN_CONFIGSITE_NOCACHE = "${@siteinfo_get_files(d, True)}"
100TOOLCHAIN_CONFIGSITE_SYSROOTCACHE = "${STAGING_DIR}/${MLPREFIX}${MACHINE}/${target_datadir}/${TARGET_SYS}_config_site.d" 100TOOLCHAIN_CONFIGSITE_SYSROOTCACHE = "${STAGING_DIR}/${MLPREFIX}${MACHINE}/${target_datadir}/${TARGET_SYS}_config_site.d"
101TOOLCHAIN_NEED_CONFIGSITE_CACHE = "${TCLIBC} ncurses" 101TOOLCHAIN_NEED_CONFIGSITE_CACHE ??= "${TCLIBC} ncurses"
102 102
103#This function create a site config file 103#This function create a site config file
104toolchain_create_sdk_siteconfig () { 104toolchain_create_sdk_siteconfig () {