Commit 19a59f42 by Mislav Marohnić

Ignore RUBY_CONFIGURE_OPTS from environment in testing

Avoids failures caused by somebody's environment possibly having
RUBY_CONFIGURE_OPTS exported to have a value.
parent 553572cc
...@@ -5,6 +5,7 @@ export RUBY_BUILD_CACHE_PATH="$TMP/cache" ...@@ -5,6 +5,7 @@ export RUBY_BUILD_CACHE_PATH="$TMP/cache"
export MAKE=make export MAKE=make
export MAKE_OPTS="-j 2" export MAKE_OPTS="-j 2"
export CC=cc export CC=cc
export -n RUBY_CONFIGURE_OPTS
setup() { setup() {
mkdir -p "$INSTALL_ROOT" mkdir -p "$INSTALL_ROOT"
......
...@@ -5,6 +5,7 @@ export MAKE=make ...@@ -5,6 +5,7 @@ export MAKE=make
export MAKE_OPTS='-j 2' export MAKE_OPTS='-j 2'
export -n CFLAGS export -n CFLAGS
export -n CC export -n CC
export -n RUBY_CONFIGURE_OPTS
@test "require_gcc on OS X 10.9" { @test "require_gcc on OS X 10.9" {
stub uname '-s : echo Darwin' stub uname '-s : echo Darwin'
......
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