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
93828a2d
Commit
93828a2d
authored
Jan 21, 2014
by
Eric Lindvall
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add MAKE_INSTALL_OPTS configuration option
parent
3ec9cfaa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
+2
-1
README.md
+1
-0
bin/ruby-build
+1
-1
No files found.
README.md
View file @
93828a2d
...
@@ -119,6 +119,7 @@ You can set certain environment variables to control the build process.
...
@@ -119,6 +119,7 @@ You can set certain environment variables to control the build process.
*
`MAKE`
lets you override the command to use for
`make`
. Useful for specifying
*
`MAKE`
lets you override the command to use for
`make`
. Useful for specifying
GNU make (
`gmake`
) on some systems.
GNU make (
`gmake`
) on some systems.
*
`MAKE_OPTS`
(or
`MAKEOPTS`
) lets you pass additional options to
`make`
.
*
`MAKE_OPTS`
(or
`MAKEOPTS`
) lets you pass additional options to
`make`
.
*
`MAKE_INSTALL_OPTS`
lets you pass additional options to
`make install`
.
*
`RUBY_CONFIGURE_OPTS`
,
`RUBY_MAKE_OPTS`
and
`RUBY_MAKE_INSTALL_OPTS`
allow
*
`RUBY_CONFIGURE_OPTS`
,
`RUBY_MAKE_OPTS`
and
`RUBY_MAKE_INSTALL_OPTS`
allow
you to specify configure and make options for buildling MRI. These variables
you to specify configure and make options for buildling MRI. These variables
will be passed to Ruby only, not any dependent packages (e.g. libyaml).
will be passed to Ruby only, not any dependent packages (e.g. libyaml).
...
...
bin/ruby-build
View file @
93828a2d
...
@@ -411,7 +411,7 @@ build_package_standard() {
...
@@ -411,7 +411,7 @@ build_package_standard() {
)
>
&4 2>&1
)
>
&4 2>&1
{
"
$MAKE
"
$MAKE_OPTS
${
!PACKAGE_MAKE_OPTS
}
"
${
!PACKAGE_MAKE_OPTS_ARRAY
}
"
{
"
$MAKE
"
$MAKE_OPTS
${
!PACKAGE_MAKE_OPTS
}
"
${
!PACKAGE_MAKE_OPTS_ARRAY
}
"
"
$MAKE
"
install
${
!PACKAGE_MAKE_INSTALL_OPTS
}
"
${
!PACKAGE_MAKE_INSTALL_OPTS_ARRAY
}
"
"
$MAKE
"
$MAKE_INSTALL_OPTS
install
${
!PACKAGE_MAKE_INSTALL_OPTS
}
"
${
!PACKAGE_MAKE_INSTALL_OPTS_ARRAY
}
"
}
>
&4 2>&1
}
>
&4 2>&1
}
}
...
...
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