Final fixes to get libctl working

This commit is contained in:
Adam J. Stewart
2016-07-13 16:34:11 -05:00
parent 1e3a5d4e26
commit 0903ae0599
2 changed files with 6 additions and 5 deletions

View File

@@ -38,9 +38,10 @@ class Libctl(Package):
def install(self, spec, prefix):
configure('--prefix={0}'.format(prefix),
'GUILE={0}'.format(spec['guile'].prefix))
'GUILE={0}'.format(join_path(
spec['guile'].prefix.bin, 'guile')),
'GUILE_CONFIG={0}'.format(join_path(
spec['guile'].prefix.bin, 'guile-config')))
make()
make('check')
make('install')
make('installcheck')