[rubygems/rubygems] We don't use self.make_command

https://github.com/rubygems/rubygems/commit/241f376c32
This commit is contained in:
Hiroshi SHIBATA 2023-04-05 10:53:35 +09:00 committed by git
parent a464951fc7
commit 6d0caac425

View File

@ -1166,15 +1166,8 @@ Also, a list:
# built on MS Windows with VC++ or Borland it will return 'nmake'. On all
# other platforms, including Cygwin, it will return 'make'.
def self.make_command
ENV["make"] || ENV["MAKE"] || (vc_windows? ? "nmake" : "make")
end
##
# See ::make_command
def make_command
self.class.make_command
ENV["make"] || ENV["MAKE"] || (vc_windows? ? "nmake" : "make")
end
##