Skip to content
Snippets Groups Projects
Commit 65ff89a0 authored by Elizabeth Fischer's avatar Elizabeth Fischer
Browse files

Placate flake8 demands.

parent 4bf9b168
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
############################################################################## ##############################################################################
from spack import * from spack import *
class NetcdfCxx4(Package): class NetcdfCxx4(Package):
"""C++ interface for NetCDF4""" """C++ interface for NetCDF4"""
homepage = "http://www.unidata.ucar.edu/software/netcdf" homepage = "http://www.unidata.ucar.edu/software/netcdf"
...@@ -36,7 +37,8 @@ class NetcdfCxx4(Package): ...@@ -36,7 +37,8 @@ class NetcdfCxx4(Package):
depends_on("autoconf") depends_on("autoconf")
def install(self, spec, prefix): 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) configure('--prefix=%s' % prefix)
make() make()
make("install") make("install")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment