workaround for otf2's erroneous python2 configure requirement (#15653)
This commit is contained in:
parent
3b7c79b225
commit
862e13183d
1 changed files with 2 additions and 1 deletions
|
@ -32,5 +32,6 @@ def configure_args(self):
|
||||||
'F77={0}'.format(spack_f77),
|
'F77={0}'.format(spack_f77),
|
||||||
'FC={0}'.format(spack_fc),
|
'FC={0}'.format(spack_fc),
|
||||||
'CFLAGS={0}'.format(self.compiler.pic_flag),
|
'CFLAGS={0}'.format(self.compiler.pic_flag),
|
||||||
'CXXFLAGS={0}'.format(self.compiler.pic_flag)
|
'CXXFLAGS={0}'.format(self.compiler.pic_flag),
|
||||||
|
'PYTHON_FOR_GENERATOR=:'
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue