Using retryfetch on git
This commit is contained in:
parent
15490251d1
commit
17dc6d5f6e
1 changed files with 3 additions and 1 deletions
|
@ -37,6 +37,7 @@ class CloneOrUpdateGDBMasterRepo (Git):
|
||||||
repourl = 'git://sourceware.org/git/binutils-gdb.git',
|
repourl = 'git://sourceware.org/git/binutils-gdb.git',
|
||||||
workdir = WithProperties ("%s/../binutils-gdb-master/",
|
workdir = WithProperties ("%s/../binutils-gdb-master/",
|
||||||
'builddir'),
|
'builddir'),
|
||||||
|
retryFetch = True,
|
||||||
mode = 'incremental')
|
mode = 'incremental')
|
||||||
|
|
||||||
class CloneOrUpdateGDBRepo (Git):
|
class CloneOrUpdateGDBRepo (Git):
|
||||||
|
@ -47,7 +48,8 @@ class CloneOrUpdateGDBRepo (Git):
|
||||||
repourl = 'git://sourceware.org/git/binutils-gdb.git',
|
repourl = 'git://sourceware.org/git/binutils-gdb.git',
|
||||||
workdir = WithProperties ('%s/binutils-gdb/', 'builddir'),
|
workdir = WithProperties ('%s/binutils-gdb/', 'builddir'),
|
||||||
reference = WithProperties ("%s/../binutils-gdb-master/",
|
reference = WithProperties ("%s/../binutils-gdb-master/",
|
||||||
'builddir'))
|
'builddir'),
|
||||||
|
retryFetch = True)
|
||||||
|
|
||||||
class ConfigureGDB (Configure):
|
class ConfigureGDB (Configure):
|
||||||
description = "configure GDB"
|
description = "configure GDB"
|
||||||
|
|
Loading…
Reference in a new issue