aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2016-07-21 11:27:57 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-02 15:20:27 +0100
commitd8ae3775eefe3f7b62fc26cae5b742ae83850c13 (patch)
tree4c34bd9e1511be6538118924e10baa77e13fe8fb /doc
parent64bf49826088c56b739ed971251f05b4564c712e (diff)
downloadbitbake-contrib-d8ae3775eefe3f7b62fc26cae5b742ae83850c13.tar.gz
bitbake-user-manual: Applied some review comments
Fixes [YOCTO #9985] Fixed some problems with the changes. A small typo for an example and added a clarifying operator in another sentence. Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/bitbake-user-manual/bitbake-user-manual-metadata.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
index f7b541d9d..fe04103da 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
+++ b/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
@@ -323,8 +323,9 @@
FOO_append = "baz"
</literallayout>
The only effect of changing the second assignment in the
- previous example is to add a space before "baz" in the
- appended value (due to how the "+=" operator works.
+ previous example to use ":=" would be to add a space before
+ "baz" in the appended value (due to how the "+=" operator
+ works).
</note>
Another advantage of the override style operations is that
you can combine them with other overrides as described in the
@@ -639,7 +640,7 @@
to "Z", and then further appended with
"X" leaving the variable set to "ZX".
Finally, applying the override for "foo" results in the conditional
- variable <filename>A</filename> becoming "Z X" (i.e.
+ variable <filename>A</filename> becoming "ZX" (i.e.
<filename>A</filename> is replaced with <filename>A_foo</filename>).
</para>