mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-12-16 15:31:12 +01:00
Merge pull request #1120 from wilson/master
Quote JRuby check on FreeBSD to avoid "unary operator" syntax issue.
This commit is contained in:
commit
9c1ea6ffcd
1 changed files with 1 additions and 1 deletions
|
|
@ -1281,7 +1281,7 @@ fi
|
|||
|
||||
if [ -z "$MAKE" ]; then
|
||||
if [ "FreeBSD" = "$(uname -s)" ]; then
|
||||
if [ $(echo $1 | sed 's/-.*$//') = "jruby" ]; then
|
||||
if [ "$(echo $1 | sed 's/-.*$//')" = "jruby" ]; then
|
||||
export MAKE="gmake"
|
||||
else
|
||||
if [ "$(uname -r | sed 's/[^[:digit:]].*//')" -lt 10 ]; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue