diff options
author | David RodrÃguez <[email protected]> | 2022-06-14 15:26:08 +0200 |
---|---|---|
committer | git <[email protected]> | 2022-06-17 17:05:19 +0900 |
commit | 5a385677f366fa093dc35ad69045bf183603427c () | |
tree | 16fb11c3724f412783e6df0ae7e3f9f56860facf | |
parent | b6c1e1158d71b533b255ae7a2731598455918071 (diff) |
[rubygems/rubygems] No need to change `RbConfig::CONFIG` at all
Only `RbConfig::MAKEFILE_CONFIG` is actually used. https://.com/rubygems/rubygems/commit/b767cc0929
-rw-r--r-- | lib/rubygems/ext/ext_conf_builder.rb | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -28,7 +28,6 @@ class Gem::Ext::ExtConfBuilder < Gem::Ext::Builder siteconf.puts "dest_path = #{tmp_dest_relative.dump}" %w[sitearchdir sitelibdir].each do |dir| siteconf.puts "RbConfig::MAKEFILE_CONFIG['#{dir}'] = dest_path" - siteconf.puts "RbConfig::CONFIG['#{dir}'] = dest_path" end siteconf.close |