From: Harish Sadineni <[email protected]>
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 the variable changed as ${do-what-limit}
Signed-off-by: Harish Sadineni <[email protected]>
---
.../gcc/gcc/0025-gcc-testsuite-tweaks-for-mips-OE.patch | 4 ++--
1 file 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
+ # Demote run tests to $do-what-limit if set
+ switch $do_what {
+ run {
-+ set do_what $do-what-limit
-+ set dg-do-what $do-what-limit
++ set do_what ${do-what-limit}
++ set dg-do-what ${do-what-limit}
+ }
+ }
+ }
--
2.43.0
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#196994):
https://lists.openembedded.org/g/openembedded-core/message/196994
Mute This Topic: https://lists.openembedded.org/mt/104886730/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-