workaround for otf2's erroneous python2 configure requirement (#15653)

This commit is contained in:
eugeneswalker 2020-03-24 14:11:38 -07:00 committed by GitHub
parent 3b7c79b225
commit 862e13183d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,5 +32,6 @@ def configure_args(self):
'F77={0}'.format(spack_f77),
'FC={0}'.format(spack_fc),
'CFLAGS={0}'.format(self.compiler.pic_flag),
'CXXFLAGS={0}'.format(self.compiler.pic_flag)
'CXXFLAGS={0}'.format(self.compiler.pic_flag),
'PYTHON_FOR_GENERATOR=:'
]