summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/git.py
diff options
context:
space:
mode:
authorAndre Rosa <andre.rosa@lge.com>2017-11-03 12:40:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-07 13:40:32 +0000
commit1083d90888589b9f0d50a1d480f7c774d8b4bda3 (patch)
tree4aac3417ac08b546140d6393adb6cfeba0617e76 /bitbake/lib/bb/fetch2/git.py
parent54e3f82bd77203c3d578e26c86506e6ef5c27000 (diff)
downloadpoky-1083d90888589b9f0d50a1d480f7c774d8b4bda3.tar.gz
bitbake: Replace deprecated git branch parameter "--set-upstream"krogoth-next
Since 2017-08-17 (git version 2.14.1.473.g3ec7d702a) using deprecated git branch parameter "--set-upstream" causes a fetcher error. Replace it by "--set-upstream-to". https://git.kernel.org/pub/scm/git/git.git/commit/?id=52668846ea2d41ffbd87cda7cb8e492dea9f2c4d says, it's deprecated since 2012-08-30 so hopefully all still supported host distributions have new enough git to support "--set-upstream-to". ERROR: PACKAGE do_unpack: Fetcher failure: ...; git -c core.fsyncobjectfiles=0 branch --set-upstream master origin/master failed with exit code 128, output: fatal: the '--set-upstream' option is no longer supported. Please use '--track' or '--set-upstream-to' instead. ERROR: PACKAGE do_unpack: Function failed: base_do_unpack (Bitbake rev: 62a53e9dbb6dc7489e44c32340b0caddd4596f0a) Signed-off-by: Andre Rosa <andre.rosa@lge.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 2ab50074c1a6c56a8a178755de108447d7b7acaf) Signed-off-by: Javier Viguera <javier.viguera@digi.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/git.py')
-rw-r--r--bitbake/lib/bb/fetch2/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 526668bc23..c226887a74 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -274,7 +274,7 @@ class Git(FetchMethod):
274 branchname = ud.branches[ud.names[0]] 274 branchname = ud.branches[ud.names[0]]
275 runfetchcmd("%s checkout -B %s %s" % (ud.basecmd, branchname, \ 275 runfetchcmd("%s checkout -B %s %s" % (ud.basecmd, branchname, \
276 ud.revisions[ud.names[0]]), d) 276 ud.revisions[ud.names[0]]), d)
277 runfetchcmd("%s branch --set-upstream %s origin/%s" % (ud.basecmd, branchname, \ 277 runfetchcmd("%s branch %s --set-upstream-to origin/%s" % (ud.basecmd, branchname, \
278 branchname), d) 278 branchname), d)
279 else: 279 else:
280 runfetchcmd("%s checkout %s" % (ud.basecmd, ud.revisions[ud.names[0]]), d) 280 runfetchcmd("%s checkout %s" % (ud.basecmd, ud.revisions[ud.names[0]]), d)