From: Samuel Thibault Date: Thu, 25 Jan 2018 02:14:22 +0000 (+0100) Subject: build-many-glibcs.py: Fix hurd-vcs checkout X-Git-Tag: glibc-2.27~97 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=481306902f989d8eed0434eea3dcbebf6e609a95;p=thirdparty%2Fglibc.git build-many-glibcs.py: Fix hurd-vcs checkout * scripts/build-many-glibcs.py (checkout_vcs): Run autoconf. --- diff --git a/ChangeLog b/ChangeLog index 6bc5717fcc6..70f7d61aad8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2018-01-25 Samuel Thibault - * 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 diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index aeeccb32a4e..113352c089d 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)