Skip to content
Snippets Groups Projects
Commit 9f0e17a5 authored by Michael Kuhn's avatar Michael Kuhn Committed by Massimiliano Culpo
Browse files

flex: restrict GCC conflict to newer Ubuntu releases (#6963)

flex 2.6.4 compiles fine with GCC 7 on (at least) Ubuntu 16.04 and Fedora 27.
parent 9d84e7eb
No related branches found
No related tags found
No related merge requests found
...@@ -53,9 +53,9 @@ class Flex(AutotoolsPackage): ...@@ -53,9 +53,9 @@ class Flex(AutotoolsPackage):
depends_on('automake', type='build', when='@:2.6.0') depends_on('automake', type='build', when='@:2.6.0')
depends_on('libtool', 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. # Build issue for v2.6.4 when gcc 7.2.0 is used on Ubuntu 17.10.
# See issue #219; https://github.com/westes/flex/issues/219 # See issue #219; https://github.com/westes/flex/issues/219
conflicts('%gcc@7.2.0:', when='@2.6.4') conflicts('%gcc@7.2.0: os=ubuntu17.10', when='@2.6.4')
def url_for_version(self, version): def url_for_version(self, version):
url = "https://github.com/westes/flex" url = "https://github.com/westes/flex"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment