diff options
author | stefanosoffia <stefanosoffia@users.noreply.github.com> | 2018-01-03 16:46:57 +0100 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-01-03 09:46:57 -0600 |
commit | 2ed914aa1bfe65fe798583c3149f2a58ec267843 (patch) | |
tree | eec9dd173ba3603264c547dedd3abbe9e5201cd8 | |
parent | d466d8f3d3fcbf0c096b5401f06c95b1ae6078d1 (diff) | |
download | spack-2ed914aa1bfe65fe798583c3149f2a58ec267843.tar.gz spack-2ed914aa1bfe65fe798583c3149f2a58ec267843.tar.bz2 spack-2ed914aa1bfe65fe798583c3149f2a58ec267843.tar.xz spack-2ed914aa1bfe65fe798583c3149f2a58ec267843.zip |
Flex v2.6.4 conflicts with gcc@7.2.0 (#6819)
-rw-r--r-- | var/spack/repos/builtin/packages/flex/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/flex/package.py b/var/spack/repos/builtin/packages/flex/package.py index 8d5ffe11c3..a4a9718e04 100644 --- a/var/spack/repos/builtin/packages/flex/package.py +++ b/var/spack/repos/builtin/packages/flex/package.py @@ -53,6 +53,10 @@ class Flex(AutotoolsPackage): depends_on('automake', type='build', when='@:2.6.0') depends_on('libtool', type='build', when='@:2.6.0') + # Build issue for v2.6.4 when gcc 7.2.0 is used. + # See issue #219; https://github.com/westes/flex/issues/219 + conflicts('%gcc@7.2.0:', when='@2.6.4') + def url_for_version(self, version): url = "https://github.com/westes/flex" if version >= Version('2.6.1'): |