diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2022-01-29 03:29:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-05 17:46:44 +0000 |
commit | 63cebdc8e8fa4c29d9baa325e8ada7301738266d (patch) | |
tree | 79044a0d266fdb960f9fd46c340a5399ab8f4887 /bitbake/doc | |
parent | 89ea828861d24b3c446f62a46a5eb38b715742b4 (diff) | |
download | poky-63cebdc8e8fa4c29d9baa325e8ada7301738266d.tar.gz |
bitbake: bitbake-user-manual: Remove unnecessary \n from a PREMIRRORS example
Since commit 044fb04d (fetch2: Allow whitespace only mirror entries)
there is no need to separate the entries in PREMIRRORS with "\n".
(Bitbake rev: 341746c7f7b8e04d3fad51ec1b9e462ced355bfc)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/doc')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst index 1bb55fc501..9d1828c3ba 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst | |||
@@ -1179,10 +1179,10 @@ overview of their function and contents. | |||
1179 | your configuration:: | 1179 | your configuration:: |
1180 | 1180 | ||
1181 | PREMIRRORS:prepend = "\ | 1181 | PREMIRRORS:prepend = "\ |
1182 | git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 1182 | git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \ |
1183 | ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 1183 | ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \ |
1184 | http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 1184 | http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \ |
1185 | https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" | 1185 | https://.*/.* http://downloads.yoctoproject.org/mirror/sources/" |
1186 | 1186 | ||
1187 | These changes cause the build system to intercept Git, FTP, HTTP, and | 1187 | These changes cause the build system to intercept Git, FTP, HTTP, and |
1188 | HTTPS requests and direct them to the ``http://`` sources mirror. You can | 1188 | HTTPS requests and direct them to the ``http://`` sources mirror. You can |