From: Jacob Kroon Date: Tue, 10 Sep 2019 13:43:27 +0000 (+0200) Subject: bitbake: bitbake-user-manual: Correct description for _append/_prepend/_remove X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=504fa7ee15817b3b4907c489d5c198bd3ca5435b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- 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 88622421db0..6b49d7fa8b7 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 @@ 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: B = "bval" @@ -435,7 +434,7 @@ Like "_append" and "_prepend", "_remove" - is deferred until after parsing completes. + is applied at variable expansion time.