Flake8 and formatting changes

This commit is contained in:
Adam J. Stewart
2016-08-01 12:37:36 -05:00
parent 534e1cbf1b
commit 5fc20487e4
6 changed files with 24 additions and 20 deletions

View File

@@ -35,8 +35,8 @@ class Zlib(Package):
version('1.2.8', '44d667c142d7cda120332623eab69f40')
def install(self, spec, prefix):
configure("--prefix=%s" % prefix)
configure('--prefix={0}'.format(prefix))
make()
make("test")
make("install")
make('test')
make('install')