GNU C Library master sources branch master updated. glibc-2.26.9000-1160-gf901500
sthibaul@sourceware.org
sthibaul@sourceware.org
Thu Jan 25 02:04:00 GMT 2018
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".
The branch, master has been updated
via f901500381b74cd734660f1d4f703766e199bc12 (commit)
from 3005b70510f741082c97ae5d82e7c5946c139853 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=f901500381b74cd734660f1d4f703766e199bc12
commit f901500381b74cd734660f1d4f703766e199bc12
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Thu Jan 25 03:01:59 2018 +0100
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 428e6e8..6bc5717 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 28c04e6..aeeccb3 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)
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
scripts/build-many-glibcs.py | 4 ++++
2 files changed, 8 insertions(+), 0 deletions(-)
hooks/post-receive
--
GNU C Library master sources
More information about the Glibc-cvs
mailing list