| Message ID | 20260208083838.2780-1-logan.gallois@gmail.com |
|---|---|
| State | New |
| Headers | show |
| Series | oe-setup-build: fix TEMPLATECONF not being applied | expand |
diff --git a/scripts/oe-setup-build b/scripts/oe-setup-build index edbcd48355a..5ac46dde343 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 = "export TEMPLATECONF={}\n{}".format(template["templatepath"], cmd_base) if not no_shell: cmd = cmd + " && {}".format(os.environ.get('SHELL','bash')) print("Running:", cmd)