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 a10a660017..b8a77e1fa0 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml @@ -159,6 +159,10 @@ using the "+=" and "=+" operators. These operators insert a space between the current value and prepended or appended value. + + + + These operators take immediate effect during parsing. Here are some examples: B = "bval" @@ -178,6 +182,10 @@ If you want to append or prepend values without an inserted space, use the ".=" and "=." operators. + + + + These operators take immediate effect during parsing. Here are some examples: B = "bval" @@ -198,6 +206,13 @@ You can also append and prepend a variable's value using an override style syntax. When you use this syntax, no spaces are inserted. + + + + These operators differ from the ":=", ".=", "=.", "+=", and "=+" + operators in that their effects are deferred + until after parsing completes rather than being immediately + applied. Here are some examples: B = "bval" @@ -217,13 +232,6 @@ override syntax. - - - The operators "_append" and "_prepend" differ from - the operators ".=" and "=." in that they are deferred - until after parsing completes rather than being immediately - applied. -