diff mbox series

doc: bitbake-user-manual-metadata.rst: fix append example

Message ID 20260728-fix-append-example-v1-1-b590f9e91d38@bootlin.com
State New
Headers show
Series doc: bitbake-user-manual-metadata.rst: fix append example | expand

Commit Message

Antonin Godard July 28, 2026, 7:19 a.m. UTC
Add the missing whitespace in the combined override example, so it
matches the evaluation we give afterwards.

Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
 doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


---
base-commit: ee6143138f1cd810669c4057df2b24efe6f46f1a
change-id: 20260728-fix-append-example-a1062967afbc
diff mbox series

Patch

diff --git a/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst b/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
index 0c7c3ff99b2..de62fc3b219 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
@@ -608,7 +608,7 @@  variable.
 
       DEPENDS = "glibc ncurses"
       OVERRIDES = "machine:local"
-      DEPENDS:append:machine = "libmad"
+      DEPENDS:append:machine = " libmad"
 
    In this example, :term:`DEPENDS` becomes "glibc ncurses libmad".