summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJacob Kroon <jacob.kroon@gmail.com>2019-09-10 15:43:27 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-10 15:18:06 +0100
commit504fa7ee15817b3b4907c489d5c198bd3ca5435b (patch)
treed102148b5fa2ed6ec4ccc663ea6fb28c9262edff /bitbake
parent3b87508a9a0714944377b889feec6aed66f4412f (diff)
downloadpoky-504fa7ee15817b3b4907c489d5c198bd3ca5435b.tar.gz
bitbake: bitbake-user-manual: Correct description for _append/_prepend/_remove
The effects of _append/_prepend/_remove are applied when a variable is expanded, not after parsing has completed. (Bitbake rev: f9b67433cb4fe5132ab2cf4a9c6bc078b42e1960) Signed-off-by: Jacob Kroon <jacob.kroon@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml7
1 files changed, 3 insertions, 4 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
index 88622421db..6b49d7fa8b 100644
--- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
+++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
@@ -369,9 +369,8 @@
369 369
370 <para> 370 <para>
371 These operators differ from the ":=", ".=", "=.", "+=", and "=+" 371 These operators differ from the ":=", ".=", "=.", "+=", and "=+"
372 operators in that their effects are deferred 372 operators in that their effects are applied at variable
373 until after parsing completes rather than being immediately 373 expansion time rather than being immediately applied.
374 applied.
375 Here are some examples: 374 Here are some examples:
376 <literallayout class='monospaced'> 375 <literallayout class='monospaced'>
377 B = "bval" 376 B = "bval"
@@ -435,7 +434,7 @@
435 434
436 <para> 435 <para>
437 Like "_append" and "_prepend", "_remove" 436 Like "_append" and "_prepend", "_remove"
438 is deferred until after parsing completes. 437 is applied at variable expansion time.
439 </para> 438 </para>
440 </section> 439 </section>
441 440