summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc
diff options
context:
space:
mode:
authorHarish Sadineni <Harish.Sadineni@windriver.com>2024-03-12 09:33:25 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-03-18 12:21:45 +0000
commit20035573145bcac57736ad8806fa88054993469e (patch)
tree44b2a77435df1f74d93951c84b9ba7d98fe4d94e /meta/recipes-devtools/gcc
parent893a8bacc5bfc7415812eaa4acb55cf0a3c8e9dc (diff)
downloadpoky-20035573145bcac57736ad8806fa88054993469e.tar.gz
gcc: Oe-selftest failure analysis - fix for tcl errors
gcc testsuite unable to read the value of variable $do-what-limit and causing below tcl errors. ERROR: can't read "do": no such variable while executing "set do_what $do-what-limit" To fix this, quote the variable using braces, as in ${do-what-limit}. (From OE-Core rev: e59421468d96282057f5176438a76a325b987e47) Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r--meta/recipes-devtools/gcc/gcc/0025-gcc-testsuite-tweaks-for-mips-OE.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc/0025-gcc-testsuite-tweaks-for-mips-OE.patch b/meta/recipes-devtools/gcc/gcc/0025-gcc-testsuite-tweaks-for-mips-OE.patch
index c405d8d484..e4d57c27ef 100644
--- a/meta/recipes-devtools/gcc/gcc/0025-gcc-testsuite-tweaks-for-mips-OE.patch
+++ b/meta/recipes-devtools/gcc/gcc/0025-gcc-testsuite-tweaks-for-mips-OE.patch
@@ -80,8 +80,8 @@ index 9d79b9402e9..e0e5cbb1af8 100644
80+ # Demote run tests to $do-what-limit if set 80+ # Demote run tests to $do-what-limit if set
81+ switch $do_what { 81+ switch $do_what {
82+ run { 82+ run {
83+ set do_what $do-what-limit 83+ set do_what ${do-what-limit}
84+ set dg-do-what $do-what-limit 84+ set dg-do-what ${do-what-limit}
85+ } 85+ }
86+ } 86+ }
87+ } 87+ }