diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2022-01-29 03:26:01 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-20 15:36:13 +0000 |
commit | cd823f21f8f94463baac9f914c6edc7e245e7a30 (patch) | |
tree | 4ed6005a39065412e8c45376cda51cca3619f780 /documentation/overview-manual | |
parent | 4760c3e264c10c019635338d47221cce9ccd4bf2 (diff) | |
download | poky-cd823f21f8f94463baac9f914c6edc7e245e7a30.tar.gz |
manuals: Remove unnecessary \n from SSTATE_MIRRORS examples
Since commit 044fb04d in bitbake (fetch2: Allow whitespace only mirror
entries) there is no need to separate the entries in SSTATE_MIRRORS
with "\n".
(From yocto-docs rev: 87b34b69b2df72d4e6edbd81839622fffd560331)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/overview-manual')
-rw-r--r-- | documentation/overview-manual/concepts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst index 5cb5cb7127..5c6364129d 100644 --- a/documentation/overview-manual/concepts.rst +++ b/documentation/overview-manual/concepts.rst | |||
@@ -1904,7 +1904,7 @@ Behind the scenes, the shared state code works by looking in | |||
1904 | shared state files. Here is an example:: | 1904 | shared state files. Here is an example:: |
1905 | 1905 | ||
1906 | SSTATE_MIRRORS ?= "\ | 1906 | SSTATE_MIRRORS ?= "\ |
1907 | file://.* https://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \ | 1907 | file://.* https://someserver.tld/share/sstate/PATH;downloadfilename=PATH \ |
1908 | file://.* file:///some/local/dir/sstate/PATH" | 1908 | file://.* file:///some/local/dir/sstate/PATH" |
1909 | 1909 | ||
1910 | .. note:: | 1910 | .. note:: |