From: Samuel Thibault Date: Thu, 25 Jan 2018 02:01:59 +0000 (+0100) Subject: build-many-glibcs.py: Add hurd vcs support X-Git-Tag: glibc-2.27~98 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f901500381b74cd734660f1d4f703766e199bc12;p=thirdparty%2Fglibc.git build-many-glibcs.py: Add hurd vcs support * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository URL. --- diff --git a/ChangeLog b/ChangeLog index 428e6e8f1d3..6bc5717fcc6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2018-01-25 Samuel Thibault + + * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository URL. + 2018-01-24 Joseph Myers * scripts/build-many-glibcs.py (Context.add_all_configs): Add diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 28c04e66fd5..aeeccb32a4e 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)