]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: bitbake-user-manual: Correct description for _append/_prepend/_remove
authorJacob Kroon <jacob.kroon@gmail.com>
Tue, 10 Sep 2019 13:43:27 +0000 (15:43 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 10 Sep 2019 14:18:06 +0000 (15:18 +0100)
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>
bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml

index 88622421db0cb8265c38fb7ea42bbfec9a86d4ca..6b49d7fa8b7bfc337619e3159b49dd35ae0b9a14 100644 (file)
 
             <para>
                 These operators differ from the ":=", ".=", "=.", "+=", and "=+"
-                operators in that their effects are deferred
-                until after parsing completes rather than being immediately
-                applied.
+                operators in that their effects are applied at variable
+                expansion time rather than being immediately applied.
                 Here are some examples:
                 <literallayout class='monospaced'>
      B = "bval"
 
             <para>
                 Like "_append" and "_prepend", "_remove"
-                is deferred until after parsing completes.
+                is applied at variable expansion time.
             </para>
         </section>