Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
ruby-build
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ruby-build
Commits
1a37ab18
Commit
1a37ab18
authored
Aug 02, 2016
by
SHIBATA Hiroshi
Committed by
GitHub
Aug 02, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #934 from aycabta/gmake-is-required-for-jruby
GNU Make is always required for JRuby on FreeBSD
parents
c3c58cde
750c086d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
bin/ruby-build
+10
-2
No files found.
bin/ruby-build
View file @
1a37ab18
...
@@ -1212,8 +1212,16 @@ if "${CC:-cc}" -x c /dev/null -E -Wno-error=shorten-64-to-32 &>/dev/null; then
...
@@ -1212,8 +1212,16 @@ if "${CC:-cc}" -x c /dev/null -E -Wno-error=shorten-64-to-32 &>/dev/null; then
fi
fi
if
[
-z
"
$MAKE
"
]
;
then
if
[
-z
"
$MAKE
"
]
;
then
if
[
"FreeBSD"
=
"
$(
uname
-s
)
"
]
&&
[
"
$(
uname
-r
| sed
's/[^[:digit:]].*//'
)
"
-lt
10
]
;
then
if
[
"FreeBSD"
=
"
$(
uname
-s
)
"
]
;
then
export
MAKE
=
"gmake"
if
[
$(
echo
$1
| sed
's/-.*$//'
)
=
"jruby"
]
;
then
export
MAKE
=
"gmake"
else
if
[
"
$(
uname
-r
| sed
's/[^[:digit:]].*//'
)
"
-lt
10
]
;
then
export
MAKE
=
"gmake"
else
export
MAKE
=
"make"
fi
fi
else
else
export
MAKE
=
"make"
export
MAKE
=
"make"
fi
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment