gmake: fix build with glibc 2.27 (#8344)

Also add an nls variant for gettext support.
This commit is contained in:
Michael Kuhn 2018-06-01 17:47:13 +02:00 committed by Adam J. Stewart
parent 287a43ce35
commit bda05830da

View file

@ -36,11 +36,16 @@ class Gmake(AutotoolsPackage):
version('4.0', 'b5e558f981326d9ca1bfdb841640721a')
variant('guile', default=False, description='Support GNU Guile for embedded scripting')
variant('nls', default=True, description='Enable Native Language Support')
depends_on('gettext', when='+nls')
depends_on('guile', when='+guile')
build_directory = 'spack-build'
patch('https://src.fedoraproject.org/rpms/make/raw/519a7c5bcbead22e6ea2d2c2341d981ef9e25c0d/f/make-4.2.1-glob-fix-2.patch', level=1, sha256='fe5b60d091c33f169740df8cb718bf4259f84528b42435194ffe0dd5b79cd125', when='@4.2.1')
patch('https://src.fedoraproject.org/rpms/make/raw/519a7c5bcbead22e6ea2d2c2341d981ef9e25c0d/f/make-4.2.1-glob-fix-3.patch', level=1, sha256='ca60bd9c1a1b35bc0dc58b6a4a19d5c2651f7a94a4b22b2c5ea001a1ca7a8a7f', when='@:4.2.1')
def configure_args(self):
args = []
@ -49,6 +54,11 @@ def configure_args(self):
else:
args.append('--without-guile')
if '+nls' in self.spec:
args.append('--enable-nls')
else:
args.append('--disable-nls')
return args
@run_after('install')