diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2021-03-19 08:15:27 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-03-22 18:10:06 +0000 |
commit | 22931aec260645a066aa7cd08ed4ea27c7e67301 (patch) | |
tree | b788ec0a225d736934bb7b58a262a7c6b824cb63 /bitbake | |
parent | d4603d56c7137789a508b056cd585bef2ac9db45 (diff) | |
download | poky-22931aec260645a066aa7cd08ed4ea27c7e67301.tar.gz |
bitbake: doc: fix syntax error in layer.conf example
While this example really needs to be rewritten to not define multiple
patterns in the same layer.conf, as long as it's there, it might as
well be syntactically correct.
(Bitbake rev: 1c2d2875099a3ff9149710d42c679ab31b00f68b)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst index d74e768f69..56abf7735a 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst | |||
@@ -244,7 +244,8 @@ want upstream. Here is an example: :: | |||
244 | BBFILE_COLLECTIONS = "upstream local" | 244 | BBFILE_COLLECTIONS = "upstream local" |
245 | BBFILE_PATTERN_upstream = "^/stuff/openembedded/" | 245 | BBFILE_PATTERN_upstream = "^/stuff/openembedded/" |
246 | BBFILE_PATTERN_local = "^/stuff/openembedded.modified/" | 246 | BBFILE_PATTERN_local = "^/stuff/openembedded.modified/" |
247 | BBFILE_PRIORITY_upstream = "5" BBFILE_PRIORITY_local = "10" | 247 | BBFILE_PRIORITY_upstream = "5" |
248 | BBFILE_PRIORITY_local = "10" | ||
248 | 249 | ||
249 | .. note:: | 250 | .. note:: |
250 | 251 | ||