summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-25 03:01:59 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-25 03:03:51 +0100
commitf901500381b74cd734660f1d4f703766e199bc12 (patch)
tree4972f11e6fe051abd47f5599016b2fe46c2e169c /scripts
parent3005b70510f741082c97ae5d82e7c5946c139853 (diff)
build-many-glibcs.py: Add hurd vcs support
* scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository URL.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build-many-glibcs.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 28c04e66fd..aeeccb32a4 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -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)