bitbake: doc: bitbake-user-manual: fix syntax in example and improve description

The previous syntax of the example was clearly incorrect
The example and description were also ambiguous, one could think that
it was "bitbake recipe" instead of "bitbake <recipename>"

(Bitbake rev: 9d6664bbb68fac9bb4fbcbe0b35beb0a022a5a1f)

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Michael Opdenacker
2021-07-22 19:10:21 +02:00
committed by Richard Purdie
parent 0247220336
commit 2789c74ff3

View File

@@ -91,9 +91,10 @@ level changes:
Variables that are exported to the environment are preceded by the
string "export" in the command's output.
- For recipe changes, use the following::
- To find changes to a given variable in a specific recipe, use the
following::
$ bitbake recipe -e \| grep VARIABLE="
$ bitbake recipename -e | grep VARIABLENAME=\"
This command checks to see if the variable actually makes
it into a specific recipe.