Commit 5f129640 by Sam Stephenson

Pass $RUBY_CONFIGURE_OPTS to REE installer with -c

parent e46986c7
...@@ -402,6 +402,11 @@ build_package_ree_installer() { ...@@ -402,6 +402,11 @@ build_package_ree_installer() {
options="--no-tcmalloc" options="--no-tcmalloc"
fi fi
local option
for option in $RUBY_CONFIGURE_OPTS; do
options="$options -c $option"
done
# Work around install_useful_libraries crash with --dont-install-useful-gems # Work around install_useful_libraries crash with --dont-install-useful-gems
mkdir -p "$PREFIX_PATH/lib/ruby/gems/1.8/gems" mkdir -p "$PREFIX_PATH/lib/ruby/gems/1.8/gems"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment