diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-06-02 17:05:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 15:05:50 -0700 |
commit | 7f086af05e02eacdb24450215571897d7632e6f5 (patch) | |
tree | 839ccffb96ce8da213d8148f76efbbd9ff79307b /var | |
parent | d5ffec1b2f3afff448880769ea37a530e3f3a5de (diff) | |
download | spack-7f086af05e02eacdb24450215571897d7632e6f5.tar.gz spack-7f086af05e02eacdb24450215571897d7632e6f5.tar.bz2 spack-7f086af05e02eacdb24450215571897d7632e6f5.tar.xz spack-7f086af05e02eacdb24450215571897d7632e6f5.zip |
Ruby: add warning about Avira antivirus (#16882)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/ruby/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ruby/package.py b/var/spack/repos/builtin/packages/ruby/package.py index 820e32e20b..c4f2a7dcc9 100644 --- a/var/spack/repos/builtin/packages/ruby/package.py +++ b/var/spack/repos/builtin/packages/ruby/package.py @@ -34,6 +34,10 @@ class Ruby(AutotoolsPackage): depends_on('openssl', when='+openssl') depends_on('readline', when='+readline') + # Known build issues when Avira antivirus software is running: + # https://github.com/rvm/rvm/issues/4313#issuecomment-374020379 + # TODO: add check for this and warn user + # gcc-7-based build requires patches (cf. https://bugs.ruby-lang.org/issues/13150) patch('ruby_23_gcc7.patch', level=0, when='@2.2.0:2.2.999 %gcc@7:') patch('ruby_23_gcc7.patch', level=0, when='@2.3.0:2.3.4 %gcc@7:') |