mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-12-12 05:21:00 +01:00
We use uname -s to test for OS X elsewhere; stay consistent
This commit is contained in:
parent
62411c44c5
commit
a89e8fbb33
1 changed files with 1 additions and 1 deletions
|
|
@ -518,8 +518,8 @@ verify_gcc() {
|
|||
|
||||
build_package_replace_osx_openssl() {
|
||||
# Check for broken OpenSSL build shipped with OSX.
|
||||
if [[ $(type sw_vers) ]] &&
|
||||
[[ "$(openssl version)" = "OpenSSL 0.9.8r 8 Feb 2011" ]]
|
||||
if [ "$(uname -s)" = "Darwin" ] &&
|
||||
then
|
||||
# Install to a subdirectory since we don't want shims for bin/openssl.
|
||||
OPENSSL_PREFIX_PATH="${PREFIX_PATH}/openssl"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue