diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-03-16 13:40:35 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-03-17 18:50:55 +0900 |
commit | 4ab23df2c4540578e77c79a8aaf06178362edb76 () | |
tree | 5011e2338036662371dfa8e805c0ec391e1e4840 /lib/rubygems/ext | |
parent | b8914a9d5de581c96abeac9290e5d505a570d00b (diff) |
[rubygems/rubygems] util/rubocop -A --only Style/RedundantParentheses
https://.com/rubygems/rubygems/commit/295691d4dc
-rw-r--r-- | lib/rubygems/ext/builder.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ class Gem::Ext::Builder RbConfig::CONFIG["configure_args"] =~ /with-make-prog\=(\w+)/ make_program_name = ENV["MAKE"] || ENV["make"] || $1 unless make_program_name - make_program_name = (RUBY_PLATFORM.include?("mswin")) ? "nmake" : "make" end make_program = Shellwords.split(make_program_name) |