nwchem: use basename for CC and FC
This commit is contained in:
parent
e6bac6f208
commit
66ea42f8d7
1 changed files with 5 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
|||
##############################################################################
|
||||
from spack import *
|
||||
import sys
|
||||
import os
|
||||
|
||||
|
||||
class Nwchem(Package):
|
||||
|
@ -69,6 +70,10 @@ def install(self, spec, prefix):
|
|||
args = []
|
||||
args.extend([
|
||||
'NWCHEM_TOP=%s' % self.stage.source_path,
|
||||
# NWCHEM is picky about FC and CC. They should NOT be full path.
|
||||
# see http://www.nwchem-sw.org/index.php/Special:AWCforum/sp/id7524
|
||||
'CC=%s' % os.path.basename(spack_cc),
|
||||
'FC=%s' % os.path.basename(spack_fc),
|
||||
'USE_MPI=y',
|
||||
'MPI_LOC=%s' % spec['mpi'].prefix,
|
||||
'USE_PYTHONCONFIG=y',
|
||||
|
|
Loading…
Reference in a new issue