diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-11-06 17:31:48 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-11-06 15:31:48 -0800 |
commit | ca5f71328210c292aa5277235476f3ea6160b18a (patch) | |
tree | efab0cd448251fd367083aa8c875f0f47e3e2689 | |
parent | 7f5d1953d45f135bab8dab4b238ac58156a9afd2 (diff) | |
download | spack-ca5f71328210c292aa5277235476f3ea6160b18a.tar.gz spack-ca5f71328210c292aa5277235476f3ea6160b18a.tar.bz2 spack-ca5f71328210c292aa5277235476f3ea6160b18a.tar.xz spack-ca5f71328210c292aa5277235476f3ea6160b18a.zip |
Further restrict versions of GCC patched (#2259)
-rw-r--r-- | var/spack/repos/builtin/packages/gcc/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gcc/package.py b/var/spack/repos/builtin/packages/gcc/package.py index be3b6cca51..18fe0d88f8 100644 --- a/var/spack/repos/builtin/packages/gcc/package.py +++ b/var/spack/repos/builtin/packages/gcc/package.py @@ -58,7 +58,7 @@ class Gcc(Package): provides('golang', when='@4.7.1:') patch('piclibs.patch', when='+piclibs') - patch('gcc-backport.patch', when='@4.7:5.3') + patch('gcc-backport.patch', when='@4.7:4.9.2,5:5.3') def install(self, spec, prefix): # libjava/configure needs a minor fix to install into spack paths. |