Fixes [YOCTO #9985]
Fixed an operator typo from ":=" to "+=" in the note
at the bottom of the section.
(Bitbake rev:
319d3d387161182069e6d1b3db17ccb539d097ed)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
FOO_append = "baz"
</literallayout>
The only effect of changing the second assignment in the
- previous example to use ":=" would be to add a space before
+ previous example to use "+=" would be to add a space before
"baz" in the appended value (due to how the "+=" operator
works).
</note>