diff mbox series

brief-yoctoprojectqs: adjust bitbake-setup top dir default

Message ID 20251119124710.3905807-1-alex@linutronix.de
State Under Review
Headers show
Series brief-yoctoprojectqs: adjust bitbake-setup top dir default | expand

Commit Message

Alexander Kanavin Nov. 19, 2025, 12:47 p.m. UTC
It has changed to be the current directory, so just swap
CWD and HOME in examples.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 documentation/brief-yoctoprojectqs/index.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/documentation/brief-yoctoprojectqs/index.rst b/documentation/brief-yoctoprojectqs/index.rst
index 211b6d70f..c55279dd1 100644
--- a/documentation/brief-yoctoprojectqs/index.rst
+++ b/documentation/brief-yoctoprojectqs/index.rst
@@ -105,14 +105,14 @@  Setup a build environment with the following command:
 
    $ ./bitbake/bin/bitbake-setup init
 
-By default, this will setup a top directory in ``$HOME/bitbake-builds``.
+By default, this will setup a top directory in the current directory.
 
-If you prefer to setup your builds in a different top directory, for example the
-current directory, you can set it with the :ref:`bitbake:ref-bbsetup-command-settings` command:
+If you prefer to setup your builds in a different top directory, for example
+``$HOME/bitbake-builds``, you can set it with the :ref:`bitbake:ref-bbsetup-command-settings` command:
 
 .. code-block:: shell
 
-   $ ./bitbake/bin/bitbake-setup settings set --global default top-dir-prefix $PWD
+   $ ./bitbake/bin/bitbake-setup settings set --global default top-dir-prefix $HOME
 
 .. note::