diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2021-07-22 19:10:21 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 16:09:19 +0100 |
commit | 2789c74ff323e1b057c05ea981124ca463029cca (patch) | |
tree | a550d3a0065970d74ea2cce7b8b83fc8b3a99fc5 /bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | |
parent | 024722033695db4129086f1a047d2764672eec87 (diff) | |
download | poky-2789c74ff323e1b057c05ea981124ca463029cca.tar.gz |
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>
Diffstat (limited to 'bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst index 372926064a..6b88fd11e0 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | |||
@@ -91,9 +91,10 @@ level changes: | |||
91 | Variables that are exported to the environment are preceded by the | 91 | Variables that are exported to the environment are preceded by the |
92 | string "export" in the command's output. | 92 | string "export" in the command's output. |
93 | 93 | ||
94 | - For recipe changes, use the following:: | 94 | - To find changes to a given variable in a specific recipe, use the |
95 | following:: | ||
95 | 96 | ||
96 | $ bitbake recipe -e \| grep VARIABLE=" | 97 | $ bitbake recipename -e | grep VARIABLENAME=\" |
97 | 98 | ||
98 | This command checks to see if the variable actually makes | 99 | This command checks to see if the variable actually makes |
99 | it into a specific recipe. | 100 | it into a specific recipe. |