Placate flake8 demands.

This commit is contained in:
Elizabeth Fischer 2016-05-16 12:53:24 -04:00
parent 4bf9b168a5
commit 65ff89a0b0

View File

@ -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):
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")