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-04 11:16:43 +0100 |
commit | 59292e098dbb3ab888f524d6953fd58fca0d8cad (patch) | |
tree | 81c7fd60e3796520629fcecf81580deb644cc924 /bitbake | |
parent | bbef4aeb3a78f740ef836f0ecd563e05303c9ee1 (diff) | |
download | poky-59292e098dbb3ab888f524d6953fd58fca0d8cad.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>
Diffstat (limited to 'bitbake')
-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): |