| Message ID | 9b447baa-be7b-7eac-d5f2-bca5cf82a397@crashcourse.ca |
|---|---|
| State | New |
| Headers | show |
| Series | doc: BBFILE_COLLECTIONS assignment should use "+=", not "=" | expand |
diff --git a/doc/bitbake-user-manual/bitbake-user-manual-execution.rst b/doc/bitbake-user-manual/bitbake-user-manual-execution.rst index d407f59c0..b624fe8f6 100644 --- a/doc/bitbake-user-manual/bitbake-user-manual-execution.rst +++ b/doc/bitbake-user-manual/bitbake-user-manual-execution.rst @@ -241,7 +241,7 @@ upstream repository, but with custom modifications that one does not want upstream. Here is an example:: BBFILES = "/stuff/openembedded/*/*.bb /stuff/openembedded.modified/*/*.bb" - BBFILE_COLLECTIONS = "upstream local" + BBFILE_COLLECTIONS += "upstream local" BBFILE_PATTERN_upstream = "^/stuff/openembedded/" BBFILE_PATTERN_local = "^/stuff/openembedded.modified/" BBFILE_PRIORITY_upstream = "5"
In a layer.conf file, the assignment to BBFILE_COLLECTIONS should use "+=", not simply "=". Even though this is just meant as an example, it should still be correct. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> ---