mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-26 11:51:20 +01:00
Detect Python from conf.env.PYTHON
This commit is contained in:
parent
a31b08615c
commit
98f051dfa4
@ -591,7 +591,10 @@ def configure(conf):
|
||||
if getattr(Options.options, 'nopycache', None):
|
||||
v.NOPYCACHE=Options.options.nopycache
|
||||
|
||||
conf.find_program('python', var='PYTHON', value=getattr(Options.options, 'python', None) or sys.executable)
|
||||
if not v.PYTHON:
|
||||
v.PYTHON = getattr(Options.options, 'python', None) or sys.executable
|
||||
v.PYTHON = Utils.to_list(v.PYTHON)
|
||||
conf.find_program('python', var='PYTHON')
|
||||
|
||||
v.PYFLAGS = ''
|
||||
v.PYFLAGS_OPT = '-O'
|
||||
|
Loading…
Reference in New Issue
Block a user