summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
##