--with-system-ffi is ignored as of py3.7
This commit is contained in:
parent
4c1a69a98c
commit
33da5ca869
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ def replace_in_file(path, src, dest):
|
|||
else:
|
||||
src = os.path.abspath(tuple(os.listdir('.'))[0])
|
||||
os.chdir(src)
|
||||
run(f'./configure --prefix=/opt/{PY} --enable-shared --with-system-expat --with-system-ffi --without-ensurepip')
|
||||
run(f'./configure --prefix=/opt/{PY} --enable-shared --with-system-expat --without-ensurepip')
|
||||
run(f'make -j {os.cpu_count()}')
|
||||
run('make install')
|
||||
os.chdir('/')
|
||||
|
|
|
|||
Loading…
Reference in a new issue