diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-25 03:14:22 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-25 03:14:22 +0100 |
commit | 481306902f989d8eed0434eea3dcbebf6e609a95 (patch) | |
tree | a67f5f05c2ae1bb35214e3a76aeb1849d64e4ee4 /scripts | |
parent | build-many-glibcs.py: Add hurd vcs support (diff) | |
download | glibc-481306902f989d8eed0434eea3dcbebf6e609a95.tar.gz glibc-481306902f989d8eed0434eea3dcbebf6e609a95.tar.bz2 glibc-481306902f989d8eed0434eea3dcbebf6e609a95.zip |
build-many-glibcs.py: Fix hurd-vcs checkout
* scripts/build-many-glibcs.py (checkout_vcs): Run autoconf.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-many-glibcs.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index aeeccb32a4..113352c089 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) |