bootstrap: restrict patchelf to v0.13.x (#27685)

This commit is contained in:
Massimiliano Culpo
2021-11-29 15:41:25 +01:00
committed by GitHub
parent 48d98b4c9e
commit 0d10408a25

View File

@@ -785,7 +785,10 @@ def ensure_gpg_in_path_or_raise():
def patchelf_root_spec():
"""Return the root spec used to bootstrap patchelf"""
return _root_spec('patchelf@0.13:')
# TODO: patchelf is restricted to v0.13 since earlier versions have
# TODO: bugs that we don't to deal with, while v0.14 requires a C++17
# TODO: which may not be available on all platforms.
return _root_spec('patchelf@0.13.1:0.13.99')
def ensure_patchelf_in_path_or_raise():