Skip to content

Commit

Permalink
Merge pull request rbenv#1312 from rubyrider/fix/typo-in-homebrew-rea…
Browse files Browse the repository at this point in the history
…dline

Typo: Using readline from homebrew
  • Loading branch information
mislav authored Jun 28, 2019
2 parents 0867187 + 6eba687 commit dc98eda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/ruby-build
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ needs_yaml() {
use_homebrew_yaml() {
local libdir="$(brew --prefix libyaml 2>/dev/null || true)"
if [ -d "$libdir" ]; then
echo "ruby-build: use libyaml from homebrew"
echo "ruby-build: using libyaml from homebrew"
package_option ruby configure --with-libyaml-dir="$libdir"
else
return 1
Expand Down Expand Up @@ -1004,7 +1004,7 @@ use_homebrew_readline() {
if [[ "$RUBY_CONFIGURE_OPTS" != *--with-readline-dir=* ]]; then
local libdir="$(brew --prefix readline 2>/dev/null || true)"
if [ -d "$libdir" ]; then
echo "ruby-build: use readline from homebrew"
echo "ruby-build: using readline from homebrew"
package_option ruby configure --with-readline-dir="$libdir"
else
return 1
Expand All @@ -1023,7 +1023,7 @@ has_broken_mac_openssl() {
use_homebrew_openssl() {
local ssldir="$(brew --prefix openssl 2>/dev/null || true)"
if [ -d "$ssldir" ]; then
echo "ruby-build: use openssl from homebrew"
echo "ruby-build: using openssl from homebrew"
package_option ruby configure --with-openssl-dir="$ssldir"
else
return 1
Expand Down

0 comments on commit dc98eda

Please sign in to comment.