diff options
author | Harald Brinkmann <harald.brinkmann@detectomat.com> | 2021-05-05 09:59:20 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-06 11:08:08 +0100 |
commit | e155a81ab677640a6b5445756b1d11d2d3e04c4c (patch) | |
tree | c3d3cd978f85a6ddcdfaa7c80ee2343610c0c6b8 /bitbake | |
parent | 81b55a050dbd8d93f16e0cf478a2d49d6404ff91 (diff) | |
download | poky-e155a81ab677640a6b5445756b1d11d2d3e04c4c.tar.gz |
bitbake: fetch/svn: Fix parsing revision of SVN repos with redirects
svn was printing a message when encountering HTTP redirects.
This confused the revision parser.
(Bitbake rev: a944a335f8f4c4fe5df55f3d7d8e757bd2835146)
Signed-off-by: Harald Brinkmann <Harald.Brinkmann@detectomat.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch2/svn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/svn.py b/bitbake/lib/bb/fetch2/svn.py index 8856ef1c62..80102b44f2 100644 --- a/bitbake/lib/bb/fetch2/svn.py +++ b/bitbake/lib/bb/fetch2/svn.py | |||
@@ -86,7 +86,7 @@ class Svn(FetchMethod): | |||
86 | if command == "info": | 86 | if command == "info": |
87 | svncmd = "%s info %s %s://%s/%s/" % (ud.basecmd, " ".join(options), proto, svnroot, ud.module) | 87 | svncmd = "%s info %s %s://%s/%s/" % (ud.basecmd, " ".join(options), proto, svnroot, ud.module) |
88 | elif command == "log1": | 88 | elif command == "log1": |
89 | svncmd = "%s log --limit 1 %s %s://%s/%s/" % (ud.basecmd, " ".join(options), proto, svnroot, ud.module) | 89 | svncmd = "%s log --limit 1 --quiet %s %s://%s/%s/" % (ud.basecmd, " ".join(options), proto, svnroot, ud.module) |
90 | else: | 90 | else: |
91 | suffix = "" | 91 | suffix = "" |
92 | 92 | ||