summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorNisarg Patel <33021055+hpcnpatel@users.noreply.github.com>2020-03-10 22:23:41 +0100
committerGitHub <noreply@github.com>2020-03-10 16:23:41 -0500
commit4ef0442a017841922ea58381080380ba29cfe118 (patch)
treeab446cf892087dca36b6194d4e3cc91c119b575f /var
parent94b686e32bbcd125a30c5a20d64b0c414defa00d (diff)
downloadspack-4ef0442a017841922ea58381080380ba29cfe118.tar.gz
spack-4ef0442a017841922ea58381080380ba29cfe118.tar.bz2
spack-4ef0442a017841922ea58381080380ba29cfe118.tar.xz
spack-4ef0442a017841922ea58381080380ba29cfe118.zip
fix static mumps build error - Added a space at the end of ar vr for the static build to run successfully (#15407)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mumps/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/mumps/package.py b/var/spack/repos/builtin/packages/mumps/package.py
index a56bc111e2..de34b6aa19 100644
--- a/var/spack/repos/builtin/packages/mumps/package.py
+++ b/var/spack/repos/builtin/packages/mumps/package.py
@@ -241,7 +241,7 @@ class Mumps(Package):
else:
makefile_conf.extend([
'LIBEXT = .a',
- 'AR = ar vr',
+ 'AR = ar vr ',
'RANLIB = ranlib'
])