diff options
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 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) |