aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-27 20:18:15 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-27 20:18:15 +0000
commit9f95139363657104857c4b282a6a925918c71191 (patch)
treee4570699ec30592c0db62e77d37140df28bb663c /test/rubygems
parent303abc5ab8ab695d11ccdef9f1460010704e02fe (diff)
downloadruby-9f95139363657104857c4b282a6a925918c71191.tar.gz
ENV['MAKE'] is prior than ENV['make']
some CI uses ENV['MAKE'] to specify gmake git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52309 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rubygems')
-rw-r--r--test/rubygems/test_gem_ext_ext_conf_builder.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rubygems/test_gem_ext_ext_conf_builder.rb b/test/rubygems/test_gem_ext_ext_conf_builder.rb
index 908dbdeb8c..689734ac37 100644
--- a/test/rubygems/test_gem_ext_ext_conf_builder.rb
+++ b/test/rubygems/test_gem_ext_ext_conf_builder.rb
@@ -64,8 +64,8 @@ class TestGemExtExtConfBuilder < Gem::TestCase
end
def test_class_build_env_make
- env_make = ENV.delete 'make'
- ENV['make'] = 'anothermake'
+ env_make = ENV.delete 'MAKE'
+ ENV['MAKE'] = 'anothermake'
configure_args '' do
File.open File.join(@ext, 'extconf.rb'), 'w' do |extconf|
@@ -84,7 +84,7 @@ class TestGemExtExtConfBuilder < Gem::TestCase
assert_contains_make_command 'clean', output[4]
end
ensure
- ENV['make'] = env_make
+ ENV['MAKE'] = env_make
end
def test_class_build_extconf_fail