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

Placate flake8 demands.

parent 4bf9b168
Branches
Tags
No related merge requests found
......@@ -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")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment