From 47f6bd30b4088ccad1079f0f012cb39868fee10a Mon Sep 17 00:00:00 2001 From: Yoann Congal Date: Thu, 2 Oct 2025 12:09:23 +0200 Subject: [PATCH] bitbake: bitbake-setup: suggest "." instead of "source" "." is in POSIX standard[0], whereas "source" is only supported in more feature-full shells (bash, zsh, ...) [0]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#dot (Bitbake rev: 22c5fe7b2de74841e86d28a81143bd1a717518d9) Signed-off-by: Yoann Congal Signed-off-by: Richard Purdie --- bitbake/bin/bitbake-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/bin/bitbake-setup b/bitbake/bin/bitbake-setup index 1fbb65494b..51d9503c4a 100755 --- a/bitbake/bin/bitbake-setup +++ b/bitbake/bin/bitbake-setup @@ -219,7 +219,7 @@ The bitbake configuration files (local.conf, bblayers.conf and more) can be foun f.write(readme) print("Usage instructions and additional information are in\n {}\n".format(readme_file)) print("The bitbake configuration files (local.conf, bblayers.conf and more) can be found in\n {}/conf\n".format(bitbake_builddir)) - print("To run builds, source the environment using\n source {}".format(init_script)) + print("To run builds, source the environment using\n . {}".format(init_script)) def get_registry_config(registry_path, id): for root, dirs, files in os.walk(registry_path):