diff options
-rw-r--r-- | var/spack/repos/builtin/packages/lulesh/package.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/lulesh/package.py b/var/spack/repos/builtin/packages/lulesh/package.py index ddc695dbde..9282b3da66 100644 --- a/var/spack/repos/builtin/packages/lulesh/package.py +++ b/var/spack/repos/builtin/packages/lulesh/package.py @@ -41,8 +41,7 @@ class Lulesh(MakefilePackage): targets.append("SILO_INCDIR = {0}".format(self.spec["silo"].prefix.include)) targets.append("SILO_LIBDIR = {0}".format(self.spec["silo"].prefix.lib)) cxxflag = " -g -DVIZ_MESH -I${SILO_INCDIR} " - ldflags = " -g -L${SILO_LIBDIR} -Wl,-rpath -Wl, " - ldflags += "${SILO_LIBDIR} -lsiloh5 -lhdf5 " + ldflags = " -g -L${SILO_LIBDIR} -Wl,-rpath=${SILO_LIBDIR} -lsiloh5 -lhdf5 " if "+openmp" in self.spec: cxxflag += self.compiler.openmp_flag |