Skip to content

Commit

Permalink
Ensure compat-openssl10-devel is not installed for Fedora 26+ and Rub…
Browse files Browse the repository at this point in the history
…y 2.4+ (#4249)
  • Loading branch information
pkuczynski committed Nov 22, 2017
1 parent 93c1bdf commit 1b41b38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
* Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895)
* Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208)
* Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238)
* Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249)

#### Upgraded Ruby interpreters:
* Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159)
Expand Down
3 changes: 3 additions & 0 deletions scripts/functions/requirements/fedora
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ requirements_fedora_define_openssl()
if
__rvm_version_compare "${_system_version}" -ge 26
then
undesired_check openssl-devel
requirements_check compat-openssl10-devel
else
undesired_check compat-openssl10-devel
requirements_check openssl-devel
fi
;;

(*)
undesired_check compat-openssl10-devel
requirements_check openssl-devel
;;
esac
Expand Down

0 comments on commit 1b41b38

Please sign in to comment.