summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2014-12-16 15:24:23 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2014-12-22 23:24:21 -0800
commit983f35f32a9f421f93d9cae636aee6f182749b6f (patch)
treec048a3ac644837aa0bb73bdb0287526c371ccbe1 /var
parentc8d2097bae1858f793affc72fb4632381cc456a6 (diff)
downloadspack-983f35f32a9f421f93d9cae636aee6f182749b6f.tar.gz
spack-983f35f32a9f421f93d9cae636aee6f182749b6f.tar.bz2
spack-983f35f32a9f421f93d9cae636aee6f182749b6f.tar.xz
spack-983f35f32a9f421f93d9cae636aee6f182749b6f.zip
Tweak extrae indentation.
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/extrae/package.py10
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)