summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/layers.rst
diff options
context:
space:
mode:
authorAntonin Godard <antonin.godard@bootlin.com>2025-07-29 11:56:52 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-08 23:41:11 +0100
commit89fd9dd17a6450a1a9250e3f8ba212e9c3afd3f2 (patch)
tree5615030177498909da83965c1fcb67d046798a95 /documentation/dev-manual/layers.rst
parente9042fee7188021130efed1b2db31eac96c50f5b (diff)
downloadpoky-89fd9dd17a6450a1a9250e3f8ba212e9c3afd3f2.tar.gz
docs-wide: fix space around equal assignments
Since commit 24772dd2ae6c ("parse/ConfHandler: Add warning for deprecated whitespace usage") in BitBake, a warning is printed when there are no spaces around an `=` assignment. Adjust the documentation to show good examples only. (From yocto-docs rev: 77ce1544dd793036b1135817c02e090138fe6407) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/layers.rst')
-rw-r--r--documentation/dev-manual/layers.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/dev-manual/layers.rst b/documentation/dev-manual/layers.rst
index 67482bf544..fbf3f1a339 100644
--- a/documentation/dev-manual/layers.rst
+++ b/documentation/dev-manual/layers.rst
@@ -609,7 +609,7 @@ file is in the layer at ``recipes-graphics/xorg-xserver``::
609 file://xorg.conf.d/99-calibration.conf \ 609 file://xorg.conf.d/99-calibration.conf \
610 " 610 "
611 do_install:append:rpi () { 611 do_install:append:rpi () {
612 PITFT="${@bb.utils.contains("MACHINE_FEATURES", "pitft", "1", "0", d)}" 612 PITFT = "${@bb.utils.contains("MACHINE_FEATURES", "pitft", "1", "0", d)}"
613 if [ "${PITFT}" = "1" ]; then 613 if [ "${PITFT}" = "1" ]; then
614 install -d ${D}/${sysconfdir}/X11/xorg.conf.d/ 614 install -d ${D}/${sysconfdir}/X11/xorg.conf.d/
615 install -m 0644 ${UNPACKDIR}/xorg.conf.d/98-pitft.conf ${D}/${sysconfdir}/X11/xorg.conf.d/ 615 install -m 0644 ${UNPACKDIR}/xorg.conf.d/98-pitft.conf ${D}/${sysconfdir}/X11/xorg.conf.d/