summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElizabeth Fischer <elizabeth.fischer@columbia.edu>2016-05-16 12:53:24 -0400
committerElizabeth Fischer <elizabeth.fischer@columbia.edu>2016-05-16 12:53:24 -0400
commit65ff89a0b0f49bfc0bfa0370460c86d8b12f8db7 (patch)
tree9e6f74a18a181d15522c04dd47ff24fc322dacdd
parent4bf9b168a57dab285983485394f7d22d6ec7ea1f (diff)
downloadspack-65ff89a0b0f49bfc0bfa0370460c86d8b12f8db7.tar.gz
spack-65ff89a0b0f49bfc0bfa0370460c86d8b12f8db7.tar.bz2
spack-65ff89a0b0f49bfc0bfa0370460c86d8b12f8db7.tar.xz
spack-65ff89a0b0f49bfc0bfa0370460c86d8b12f8db7.zip
Placate flake8 demands.
-rw-r--r--var/spack/repos/builtin/packages/netcdf-cxx4/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/netcdf-cxx4/package.py b/var/spack/repos/builtin/packages/netcdf-cxx4/package.py
index d705a8cd87..f8af76429b 100644
--- a/var/spack/repos/builtin/packages/netcdf-cxx4/package.py
+++ b/var/spack/repos/builtin/packages/netcdf-cxx4/package.py
@@ -24,6 +24,7 @@
##############################################################################
from spack import *
+
class NetcdfCxx4(Package):
"""C++ interface for NetCDF4"""
homepage = "http://www.unidata.ucar.edu/software/netcdf"
@@ -36,7 +37,8 @@ class NetcdfCxx4(Package):
depends_on("autoconf")
def install(self, spec, prefix):
- which('autoreconf')('-ivf') # Rebuild to prevent problems of inconsistency in git repo
+ # Rebuild to prevent problems of inconsistency in git repo
+ which('autoreconf')('-ivf')
configure('--prefix=%s' % prefix)
make()
make("install")