diff options
author | Yoann Congal <yoann.congal@smile.fr> | 2025-10-02 12:09:23 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-10-07 00:05:39 +0100 |
commit | 94e7aea5a57605c5e2bfb4f04b6c03134259c6ea (patch) | |
tree | 059470522f065b7f4dcdc786a6a1e34ff78b32d8 | |
parent | cdc5a14ace682cf6de320afa4ef80304973edd40 (diff) | |
download | poky-94e7aea5a57605c5e2bfb4f04b6c03134259c6ea.tar.gz |
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: 3c5f04343b30efcf53d13f13203c5b0f3a518b99)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | bitbake/bin/bitbake-setup | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
219 | f.write(readme) | 219 | f.write(readme) |
220 | print("Usage instructions and additional information are in\n {}\n".format(readme_file)) | 220 | print("Usage instructions and additional information are in\n {}\n".format(readme_file)) |
221 | print("The bitbake configuration files (local.conf, bblayers.conf and more) can be found in\n {}/conf\n".format(bitbake_builddir)) | 221 | print("The bitbake configuration files (local.conf, bblayers.conf and more) can be found in\n {}/conf\n".format(bitbake_builddir)) |
222 | print("To run builds, source the environment using\n source {}".format(init_script)) | 222 | print("To run builds, source the environment using\n . {}".format(init_script)) |
223 | 223 | ||
224 | def get_registry_config(registry_path, id): | 224 | def get_registry_config(registry_path, id): |
225 | for root, dirs, files in os.walk(registry_path): | 225 | for root, dirs, files in os.walk(registry_path): |