| Message ID | 445b8820876c227cef49acdc54445eeb55399d67.1775106968.git.yoann.congal@smile.fr |
|---|---|
| State | RFC, archived |
| Delegated to: | Yoann Congal |
| Headers | show |
| Series | [whinlatter,01/15] python3-pyopenssl: Fix CVE-2026-27448 | expand |
diff --git a/scripts/oe-setup-build b/scripts/oe-setup-build index edbcd48355a..7bcdeee4c32 100755 --- a/scripts/oe-setup-build +++ b/scripts/oe-setup-build @@ -98,7 +98,7 @@ def setup_build_env(args): f.write(cmd_base) print("\nRun '. {}' to initialize the build in a current shell session.\n".format(initbuild)) - cmd = "TEMPLATECONF={} {}".format(template["templatepath"], cmd_base) + cmd = "TEMPLATECONF={}\n{}".format(template["templatepath"], cmd_base) if not no_shell: cmd = cmd + " && {}".format(os.environ.get('SHELL','bash')) print("Running:", cmd)