Skip to content

Commit

Permalink
Fix case for variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Micket committed Apr 26, 2020
1 parent 29c30c5 commit 0316d6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/easyblocks/n/nwchem.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ def configure_step(self):
self.setvar_env_makeopt('FOPTIMIZE', os.getenv('FFLAGS'))

# BLAS and ScaLAPACK
MPI_LIB_DIRS = ' '.join('-L' + d for d in os.getenv('MPI_LIB_DIR').split())
self.setvar_env_makeopt('BLASOPT', ' '.join([os.getenv('LDFLAGS'), MPI_LIB_DIRS,
mpi_lib_dirs = ' '.join('-L' + d for d in os.getenv('MPI_LIB_DIR').split())
self.setvar_env_makeopt('BLASOPT', ' '.join([os.getenv('LDFLAGS'), mpi_lib_dirs,
os.getenv('LIBSCALAPACK_MT'), libmpi]))

# Setting LAPACK_LIB is required from 7.0.0 onwards.
Expand Down

0 comments on commit 0316d6f

Please sign in to comment.