summaryrefslogtreecommitdiff
path: root/test/rubygems
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-04-05 10:53:35 +0900
committergit <svn-admin@ruby-lang.org>2023-04-05 05:49:25 +0000
commit6d0caac4253acbb80fe6531c50d9f3520d2a4664 (patch)
treefff7a5b7ff3cc98838cc702a67a3e71d9a4ca972 /test/rubygems
parenta464951fc79271a87d09a13f8fd9965dda6e2e61 (diff)
downloadruby-6d0caac4253acbb80fe6531c50d9f3520d2a4664.tar.gz
[rubygems/rubygems] We don't use self.make_command
https://github.com/rubygems/rubygems/commit/241f376c32
Diffstat (limited to 'test/rubygems')
-rw-r--r--test/rubygems/helper.rb9
1 files changed, 1 insertions, 8 deletions
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
##