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

@@ -38,7 +38,8 @@ class Nettle(Package):
depends_on('gmp')
def install(self, spec, prefix):
configure("--prefix=%s" % prefix)
configure('--prefix={0}'.format(prefix))
make()
make("check")
make("install")
make('check')
make('install')