diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-12-16 15:24:23 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-12-22 23:24:21 -0800 |
commit | 983f35f32a9f421f93d9cae636aee6f182749b6f (patch) | |
tree | c048a3ac644837aa0bb73bdb0287526c371ccbe1 | |
parent | c8d2097bae1858f793affc72fb4632381cc456a6 (diff) | |
download | spack-983f35f32a9f421f93d9cae636aee6f182749b6f.tar.gz spack-983f35f32a9f421f93d9cae636aee6f182749b6f.tar.bz2 spack-983f35f32a9f421f93d9cae636aee6f182749b6f.tar.xz spack-983f35f32a9f421f93d9cae636aee6f182749b6f.zip |
Tweak extrae indentation.
-rw-r--r-- | var/spack/packages/extrae/package.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/var/spack/packages/extrae/package.py b/var/spack/packages/extrae/package.py index 3b842bc1ec..b1a3a3e440 100644 --- a/var/spack/packages/extrae/package.py +++ b/var/spack/packages/extrae/package.py @@ -31,7 +31,15 @@ class Extrae(Package): elif 'mvapich2' in spec: mpi = spec['mvapich2'] - configure("--prefix=%s" % prefix, "--with-mpi=%s" % mpi.prefix, "--with-unwind=%s" % spec['libunwind'].prefix, "--with-dyninst=%s" % spec['dyninst'].prefix, "--with-boost=%s" % spec['boost'].prefix, "--with-dwarf=%s" % spec['libdwarf'].prefix, "--with-papi=%s" % spec['papi'].prefix, "--with-dyninst-headers=%s" % spec['dyninst'].prefix.include, "--with-dyninst-libs=%s" % spec['dyninst'].prefix.lib) + configure("--prefix=%s" % prefix, + "--with-mpi=%s" % mpi.prefix, + "--with-unwind=%s" % spec['libunwind'].prefix, + "--with-dyninst=%s" % spec['dyninst'].prefix, + "--with-boost=%s" % spec['boost'].prefix, + "--with-dwarf=%s" % spec['libdwarf'].prefix, + "--with-papi=%s" % spec['papi'].prefix, + "--with-dyninst-headers=%s" % spec['dyninst'].prefix.include, + "--with-dyninst-libs=%s" % spec['dyninst'].prefix.lib) make() make("install", parallel=False) |