build-many-glibcs.py: Add hurd vcs support

* scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository URL.
This commit is contained in:
Samuel Thibault 2018-01-25 03:01:59 +01:00
parent 3005b70510
commit f901500381
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2018-01-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
* scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository URL.
2018-01-24 Joseph Myers <joseph@codesourcery.com>
* scripts/build-many-glibcs.py (Context.add_all_configs): Add

View File

@ -786,6 +786,10 @@ class Context(object):
r = self.git_checkout(component, git_url, git_branch, update)
self.fix_glibc_timestamps()
return r
elif component == 'hurd':
git_url = 'git://git.savannah.gnu.org/hurd/hurd.git'
git_branch = 'master'
return self.git_checkout(component, git_url, git_branch, update)
else:
print('error: component %s coming from VCS' % component)
exit(1)