GNU C Library master sources branch master updated. glibc-2.26.9000-1161-g4813069
sthibaul@sourceware.org
sthibaul@sourceware.org
Thu Jan 25 02:19: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 481306902f989d8eed0434eea3dcbebf6e609a95 (commit)
from f901500381b74cd734660f1d4f703766e199bc12 (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=481306902f989d8eed0434eea3dcbebf6e609a95
commit 481306902f989d8eed0434eea3dcbebf6e609a95
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Thu Jan 25 03:14:22 2018 +0100
build-many-glibcs.py: Fix hurd-vcs checkout
* scripts/build-many-glibcs.py (checkout_vcs): Run autoconf.
diff --git a/ChangeLog b/ChangeLog
index 6bc5717..70f7d61 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2018-01-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
- * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository URL.
+ * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository
+ URL, and run autoconf.
2018-01-24 Joseph Myers <joseph@codesourcery.com>
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index aeeccb3..113352c 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -789,7 +789,10 @@ class Context(object):
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)
+ r = self.git_checkout(component, git_url, git_branch, update)
+ subprocess.run(['autoconf'],
+ cwd=self.component_srcdir(component), check=True)
+ return r
else:
print('error: component %s coming from VCS' % component)
exit(1)
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 ++-
scripts/build-many-glibcs.py | 5 ++++-
2 files changed, 6 insertions(+), 2 deletions(-)
hooks/post-receive
--
GNU C Library master sources
More information about the Glibc-cvs
mailing list