wi4mpi: fix a missed conversion to string (#30541)

This commit is contained in:
mcuma 2022-05-09 23:42:21 -06:00 committed by GitHub
parent 359229f5f8
commit 23b7071bb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ def cmake_args(self):
def setup_run_environment(self, env):
env.set('WI4MPI_ROOT', self.prefix)
env.set('WI4MPI_VERSION', self.version)
env.set('WI4MPI_VERSION', str(self.version))
env.set('WI4MPI_CC', self.compiler.cc)
env.set('WI4MPI_CXX', self.compiler.cxx)
env.set('WI4MPI_FC', self.compiler.fc)