diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-03-29 22:35:45 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-03-29 22:35:45 +0000 |
commit | d4fc094391810d82885807c9ae98abb808be4235 (patch) | |
tree | a5c3720a4ade583f40f46e23d3595c8d41e32c9d /lib/rubygems/test_case.rb | |
parent | 2e9f4bfd510f52b8478294ddd6269079c45c6171 (diff) |
test_case.rb: use $MAKE
* lib/rubygems/test_case.rb (make_command): usually $MAKE is
defined but not $make.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rubygems/test_case.rb')
-rw-r--r-- | lib/rubygems/test_case.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rubygems/test_case.rb b/lib/rubygems/test_case.rb index 9ff9d3f5ee..fb8cf13794 100644 --- a/lib/rubygems/test_case.rb +++ b/lib/rubygems/test_case.rb @@ -1108,7 +1108,7 @@ Also, a list: # other platforms, including Cygwin, it will return 'make'. def self.make_command - ENV["make"] || (vc_windows? ? 'nmake' : 'make') + ENV["MAKE"] || (vc_windows? ? 'nmake' : 'make') end ## @@ -1117,7 +1117,7 @@ Also, a list: # other platforms, including Cygwin, it will return 'make'. def make_command - ENV["make"] || (vc_windows? ? 'nmake' : 'make') + ENV["MAKE"] || (vc_windows? ? 'nmake' : 'make') end ## |