diff mbox series

doc: bitbake-user-manual-metadata: fix missing whitespace around '=' operator

Message ID 20260730-doc-space-v1-1-90ccb2357b2b@cherry.de
State New
Headers show
Series doc: bitbake-user-manual-metadata: fix missing whitespace around '=' operator | expand

Commit Message

Quentin Schulz July 30, 2026, 2:47 p.m. UTC
From: Quentin Schulz <quentin.schulz@cherry.de>

Since Whinlatter (5.3) BitBake will warn if the assignment operator (=)
isn't surrounded by spaces, so let's fix the only occurrence in the docs
where it was not already the case.

Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
---
Inspired by https://lore.kernel.org/yocto-docs/20260728090746.27793-4-niko.mauno@vaisala.com/
for yocto-docs.
---
 doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


---
base-commit: d1886335f0d7fa86e87c6001d5be306a8e90586b
change-id: 20260730-doc-space-886498d58e08

Best regards,
--  
Quentin Schulz <quentin.schulz@cherry.de>
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 0c7c3ff99..068ea2afb 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
@@ -617,8 +617,8 @@  variable.
    ``KERNEL_FEATURES`` variable based on the architecture::
 
       KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}"
-      KERNEL_FEATURES:append:qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc"
-      KERNEL_FEATURES:append:qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc"
+      KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc"
+      KERNEL_FEATURES:append:qemux86-64 = " cfg/sound.scc cfg/paravirt_kvm.scc"
 
 -  *Setting a Variable for a Single Task:* BitBake supports setting a
    variable just for the duration of a single task. Here is an example::