Commit 3e61f76a authored by Cyril Mougel's avatar Cyril Mougel
Browse files

Allow define RUBY_CONFIGURE_OPTS on rbx configure

The configure of rbx can take a RUBY_CONFIGURE_OPTS. You can by example
use the `--skip-prebuilt` OPTS
parent b6f1d249
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -428,7 +428,7 @@ build_package_ree_installer() {
build_package_rbx() {
  local package_name="$1"

  { ./configure --prefix="$PREFIX_PATH" --gemsdir="$PREFIX_PATH"
  { ./configure --prefix="$PREFIX_PATH" --gemsdir="$PREFIX_PATH" $RUBY_CONFIGURE_OPTS
    rake install
  } >&4 2>&1
}