зеркало из https://github.com/github/ruby.git
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
This commit is contained in:
Родитель
2e9f4bfd51
Коммит
d4fc094391
|
@ -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
|
||||
|
||||
##
|
||||
|
|
Загрузка…
Ссылка в новой задаче