Bug fixes

This commit is contained in:
Adam J. Stewart 2016-07-05 11:12:26 -05:00
parent 7e53f4328f
commit 9e05fdf4a1
2 changed files with 3 additions and 4 deletions

View File

@ -39,7 +39,6 @@ class Gettext(Package):
variant('libxml2', default=True, description='Use libxml2') variant('libxml2', default=True, description='Use libxml2')
variant('git', default=True, description='Enable git support') variant('git', default=True, description='Enable git support')
variant('tar', default=True, description='Enable tar support') variant('tar', default=True, description='Enable tar support')
variant('gzip', default=True, description='Enable gzip support')
variant('bzip2', default=True, description='Enable bzip2 support') variant('bzip2', default=True, description='Enable bzip2 support')
variant('xz', default=True, description='Enable xz support') variant('xz', default=True, description='Enable xz support')
@ -54,7 +53,7 @@ class Gettext(Package):
# C# runtime and compiler (e.g. pnet or mono) # C# runtime and compiler (e.g. pnet or mono)
depends_on('git@1.6:', when='+git') depends_on('git@1.6:', when='+git')
depends_on('tar', when='+tar') depends_on('tar', when='+tar')
depends_on('gzip', when='+gzip') # depends_on('gzip', when='+gzip')
depends_on('bzip2', when='+bzip2') depends_on('bzip2', when='+bzip2')
depends_on('xz', when='+xz') depends_on('xz', when='+xz')

View File

@ -37,9 +37,9 @@ class Libctl(Package):
depends_on('guile') depends_on('guile')
def install(self, spec, prefix): def install(self, spec, prefix):
configure('--prefix={0}'.format(prefix) configure('--prefix={0}'.format(prefix),
'GUILE={0}'.format(spec['guile'].prefix)) 'GUILE={0}'.format(spec['guile'].prefix))
#GUILE_CONFIG=/path/to/guile-config # GUILE_CONFIG=/path/to/guile-config
make() make()
make('check') make('check')