Skip to content
Snippets Groups Projects
Commit ceab445b authored by Joseph Ciurej's avatar Joseph Ciurej
Browse files

Integrated improvements from PR #893 to remove hardcoded MPI path.

parent 88d2f6b8
Branches
Tags
No related merge requests found
......@@ -103,7 +103,7 @@ def configure(self):
makefile_inc.append('CCS = $(CC)')
makefile_inc.append('CCP = %s' %
(os.path.join(self.spec['mpi'].prefix.bin, 'mpicc') if '+mpi' in self.spec else 'mpicc'))
(self.spec['mpi'].mpicc if '+mpi' in self.spec else 'mpicc'))
makefile_inc.append('CCD = $(CCS)')
## Extra Features ##
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment