mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-01-04 08:05:16 +01:00
Allow OPENSSL_VERSION_TEXT string match without last line for OpenSUSE
This commit is contained in:
parent
ef66bd1f3c
commit
7fdf6ecfe0
1 changed files with 1 additions and 1 deletions
|
@ -1090,7 +1090,7 @@ has_broken_mac_openssl() {
|
|||
}
|
||||
|
||||
system_openssl_version() {
|
||||
local version_text=$(printf '#include <openssl/opensslv.h>\nOPENSSL_VERSION_TEXT\n' | cc -xc -E - 2>/dev/null | tail -n 1)
|
||||
local version_text=$(printf '#include <openssl/opensslv.h>\nOPENSSL_VERSION_TEXT\n' | cc -xc -E - 2>/dev/null)
|
||||
if [[ $version_text == *"OpenSSL "* ]]; then
|
||||
local version=${version_text#*OpenSSL }
|
||||
version=${version%% *}
|
||||
|
|
Loading…
Reference in a new issue