fixing more flake8 errors that only appear on travis...

This commit is contained in:
Tom Scogland 2016-05-16 05:37:04 -07:00
parent 52c359bc77
commit 9780427940

View file

@ -64,15 +64,13 @@ def install(self, spec, prefix):
make('INSTALL_TOP=%s' % prefix, make('INSTALL_TOP=%s' % prefix,
'MYLDFLAGS=-L%s -L%s ' % ( 'MYLDFLAGS=-L%s -L%s ' % (
spec['readline'].prefix.lib, spec['readline'].prefix.lib,
spec['ncurses'].prefix.lib spec['ncurses'].prefix.lib),
),
'MYLIBS=-lncurses', 'MYLIBS=-lncurses',
target) target)
make('INSTALL_TOP=%s' % prefix, make('INSTALL_TOP=%s' % prefix,
'MYLDFLAGS=-L%s -L%s ' % ( 'MYLDFLAGS=-L%s -L%s ' % (
spec['readline'].prefix.lib, spec['readline'].prefix.lib,
spec['ncurses'].prefix.lib spec['ncurses'].prefix.lib),
),
'MYLIBS=-lncurses', 'MYLIBS=-lncurses',
'install') 'install')