summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/cml1.bbclass
diff options
context:
space:
mode:
authorSven Kalmbach <sven.kalmbach@loewensteinmedical.com>2025-02-26 10:53:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-27 10:55:17 +0000
commitc804a62745936037bb82d6e0f3a75c215f9e6d72 (patch)
tree6b2c493a90dcaeed3654d6bde1944219eb8f7445 /meta/classes-recipe/cml1.bbclass
parentffdc020519cc16af3b935da88707973688ddfd0b (diff)
downloadpoky-c804a62745936037bb82d6e0f3a75c215f9e6d72.tar.gz
cml1.bbclass: do not escape the exit value
Remove incorrectly escaped exit value, which causes error handling logic not to run. [YOCTO #15731] (From OE-Core rev: 5c44a9154f0cd4252d4840d836e6936393b5d3a3) Signed-off-by: Sven Kalmbach <Sven.Kalmbach@loewensteinmedical.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/cml1.bbclass')
-rw-r--r--meta/classes-recipe/cml1.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/cml1.bbclass b/meta/classes-recipe/cml1.bbclass
index 0bf171a668..d18b008aec 100644
--- a/meta/classes-recipe/cml1.bbclass
+++ b/meta/classes-recipe/cml1.bbclass
@@ -58,7 +58,7 @@ python do_menuconfig() {
58 # ensure that environment variables are overwritten with this tasks 'd' values 58 # ensure that environment variables are overwritten with this tasks 'd' values
59 d.appendVar("OE_TERMINAL_EXPORTS", " PKG_CONFIG_DIR PKG_CONFIG_PATH PKG_CONFIG_LIBDIR PKG_CONFIG_SYSROOT_DIR") 59 d.appendVar("OE_TERMINAL_EXPORTS", " PKG_CONFIG_DIR PKG_CONFIG_PATH PKG_CONFIG_LIBDIR PKG_CONFIG_SYSROOT_DIR")
60 60
61 oe_terminal("sh -c 'make %s; if [ \\$? -ne 0 ]; then echo \"Command failed.\"; printf \"Press any key to continue... \"; read r; fi'" % d.getVar('KCONFIG_CONFIG_COMMAND'), 61 oe_terminal("sh -c 'make %s; if [ $? -ne 0 ]; then echo \"Command failed.\"; printf \"Press any key to continue... \"; read r; fi'" % d.getVar('KCONFIG_CONFIG_COMMAND'),
62 d.getVar('PN') + ' Configuration', d) 62 d.getVar('PN') + ' Configuration', d)
63 63
64 try: 64 try: