diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2018-01-10 09:47:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-10 09:47:33 -0600 |
commit | ab4e20a49c989defdbb6951660bb038240977edc (patch) | |
tree | bbd08498ef05f78f153cd9256dc1091eaf530870 /var | |
parent | c1117f05934f76da72652d574aa240245d4724ff (diff) | |
download | spack-ab4e20a49c989defdbb6951660bb038240977edc.tar.gz spack-ab4e20a49c989defdbb6951660bb038240977edc.tar.bz2 spack-ab4e20a49c989defdbb6951660bb038240977edc.tar.xz spack-ab4e20a49c989defdbb6951660bb038240977edc.zip |
Older versions of libiconv don't work with newer versions of GCC (#6829)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/libiconv/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libiconv/package.py b/var/spack/repos/builtin/packages/libiconv/package.py index 1e3d29a4df..bf0ee46b2d 100644 --- a/var/spack/repos/builtin/packages/libiconv/package.py +++ b/var/spack/repos/builtin/packages/libiconv/package.py @@ -40,6 +40,8 @@ class Libiconv(AutotoolsPackage): # of C11 any more and thus might not exist. patch('gets.patch', when='@1.14') + conflicts('@1.14', when='%gcc@5:') + def configure_args(self): args = ['--enable-extra-encodings'] |