Bugfix for "Revert "craype fix for rempi"" (#23580)

This reverts and fixes commit 1ae28f66c6.

Co-authored-by: lukebroskop <luke.roskop@hpe.com>
This commit is contained in:
Tamara Dahlgren 2021-05-11 18:31:15 -07:00 committed by GitHub
parent 1ae28f66c6
commit e7219db93d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,3 +20,9 @@ class Rempi(AutotoolsPackage):
depends_on("automake", type='build')
depends_on("libtool", type='build')
depends_on("libpciaccess", type='link')
def setup_build_environment(self, env):
if self.spec.satisfies('%cce'):
env.set('MPICC', 'mpicc')
env.set('MPICXX', 'mpicxx')
env.set('MPICH_CC', 'cc')