diff options
author | Antonin Godard <antonin.godard@bootlin.com> | 2025-07-29 11:56:52 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-08 23:41:11 +0100 |
commit | 89fd9dd17a6450a1a9250e3f8ba212e9c3afd3f2 (patch) | |
tree | 5615030177498909da83965c1fcb67d046798a95 /documentation/dev-manual/new-recipe.rst | |
parent | e9042fee7188021130efed1b2db31eac96c50f5b (diff) | |
download | poky-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/new-recipe.rst')
-rw-r--r-- | documentation/dev-manual/new-recipe.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/dev-manual/new-recipe.rst b/documentation/dev-manual/new-recipe.rst index 832aa300e1..aa4fb97a4b 100644 --- a/documentation/dev-manual/new-recipe.rst +++ b/documentation/dev-manual/new-recipe.rst | |||
@@ -298,7 +298,7 @@ a ``+`` sign in its definition. Here is an example from the recipe | |||
298 | SRC_URI = "git://github.com/stevenhoneyman/l3afpad.git;branch=master;protocol=https" | 298 | SRC_URI = "git://github.com/stevenhoneyman/l3afpad.git;branch=master;protocol=https" |
299 | 299 | ||
300 | PV = "0.8.18.1.11+git" | 300 | PV = "0.8.18.1.11+git" |
301 | SRCREV ="3cdccdc9505643e50f8208171d9eee5de11a42ff" | 301 | SRCREV = "3cdccdc9505643e50f8208171d9eee5de11a42ff" |
302 | 302 | ||
303 | If your :term:`SRC_URI` statement includes URLs pointing to individual files | 303 | If your :term:`SRC_URI` statement includes URLs pointing to individual files |
304 | fetched from a remote server other than a version control system, | 304 | fetched from a remote server other than a version control system, |