summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorstefanosoffia <stefanosoffia@users.noreply.github.com>2018-01-03 16:46:57 +0100
committerAdam J. Stewart <ajstewart426@gmail.com>2018-01-03 09:46:57 -0600
commit2ed914aa1bfe65fe798583c3149f2a58ec267843 (patch)
treeeec9dd173ba3603264c547dedd3abbe9e5201cd8 /var
parentd466d8f3d3fcbf0c096b5401f06c95b1ae6078d1 (diff)
downloadspack-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)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/flex/package.py4
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'):