mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
build-many-glibcs.py: Fix hurd-vcs checkout
* scripts/build-many-glibcs.py (checkout_vcs): Run autoconf.
This commit is contained in:
parent
f901500381
commit
481306902f
@ -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>
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user