diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-21 11:26:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-21 11:28:11 +0000 |
commit | 37dcb8b3726065509cb5e5e3505f7fc93c90e9a7 (patch) | |
tree | 394f6f4834dc479c62739bf7b22608f165d044c0 /bitbake | |
parent | 2b3f9445929def052f9a0bb7d94cc6ef678d85c9 (diff) | |
download | poky-37dcb8b3726065509cb5e5e3505f7fc93c90e9a7.tar.gz |
bitbake: bitbake-user-manual: Remove newline string in MIRRORS/PREMIRRORS
This syntax is obsolete, update to the correct modern version.
(Bitbake rev: 744e9a4c2b6f44116435feb62ac64ff256c752e9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst index 4396830a2f..c882dfa730 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst | |||
@@ -84,18 +84,18 @@ fetcher does know how to use HTTP as a transport. | |||
84 | Here are some examples that show commonly used mirror definitions:: | 84 | Here are some examples that show commonly used mirror definitions:: |
85 | 85 | ||
86 | PREMIRRORS ?= "\ | 86 | PREMIRRORS ?= "\ |
87 | bzr://.*/.\* http://somemirror.org/sources/ \\n \ | 87 | bzr://.*/.\* http://somemirror.org/sources/ \ |
88 | cvs://.*/.\* http://somemirror.org/sources/ \\n \ | 88 | cvs://.*/.\* http://somemirror.org/sources/ \ |
89 | git://.*/.\* http://somemirror.org/sources/ \\n \ | 89 | git://.*/.\* http://somemirror.org/sources/ \ |
90 | hg://.*/.\* http://somemirror.org/sources/ \\n \ | 90 | hg://.*/.\* http://somemirror.org/sources/ \ |
91 | osc://.*/.\* http://somemirror.org/sources/ \\n \ | 91 | osc://.*/.\* http://somemirror.org/sources/ \ |
92 | p4://.*/.\* http://somemirror.org/sources/ \\n \ | 92 | p4://.*/.\* http://somemirror.org/sources/ \ |
93 | svn://.*/.\* http://somemirror.org/sources/ \\n" | 93 | svn://.*/.\* http://somemirror.org/sources/" |
94 | 94 | ||
95 | MIRRORS =+ "\ | 95 | MIRRORS =+ "\ |
96 | ftp://.*/.\* http://somemirror.org/sources/ \\n \ | 96 | ftp://.*/.\* http://somemirror.org/sources/ \ |
97 | http://.*/.\* http://somemirror.org/sources/ \\n \ | 97 | http://.*/.\* http://somemirror.org/sources/ \ |
98 | https://.*/.\* http://somemirror.org/sources/ \\n" | 98 | https://.*/.\* http://somemirror.org/sources/" |
99 | 99 | ||
100 | It is useful to note that BitBake | 100 | It is useful to note that BitBake |
101 | supports cross-URLs. It is possible to mirror a Git repository on an | 101 | supports cross-URLs. It is possible to mirror a Git repository on an |