]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
build-many-glibcs.py: Fix hurd-vcs checkout
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Thu, 25 Jan 2018 02:14:22 +0000 (03:14 +0100)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Thu, 25 Jan 2018 02:14:22 +0000 (03:14 +0100)
* scripts/build-many-glibcs.py (checkout_vcs): Run autoconf.

ChangeLog
scripts/build-many-glibcs.py

index 6bc5717fcc668dc945dcc4d127b80f5a102a8ddb..70f7d61aad826b72ad8fcc47c2f7afcf6123be5f 100644 (file)
--- 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>
 
index aeeccb32a4ea5228f85a803fb4e44d6e566100a6..113352c089d32c92a8e6abfa2bbdcce6a237015d 100755 (executable)
@@ -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)