From 6d0caac4253acbb80fe6531c50d9f3520d2a4664 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Wed, 5 Apr 2023 10:53:35 +0900 Subject: [rubygems/rubygems] We don't use self.make_command https://github.com/rubygems/rubygems/commit/241f376c32 --- test/rubygems/helper.rb | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'test/rubygems') diff --git a/test/rubygems/helper.rb b/test/rubygems/helper.rb index 4629a74040..49d5568421 100644 --- a/test/rubygems/helper.rb +++ b/test/rubygems/helper.rb @@ -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 ## -- cgit v1.2.1