summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2022-06-14 15:26:08 +0200
committergit <svn-admin@ruby-lang.org>2022-06-17 17:05:19 +0900
commit5a385677f366fa093dc35ad69045bf183603427c (patch)
tree16fb11c3724f412783e6df0ae7e3f9f56860facf /lib
parentb6c1e1158d71b533b255ae7a2731598455918071 (diff)
[rubygems/rubygems] No need to change `RbConfig::CONFIG` at all
Only `RbConfig::MAKEFILE_CONFIG` is actually used. https://github.com/rubygems/rubygems/commit/b767cc0929
Diffstat (limited to 'lib')
-rw-r--r--lib/rubygems/ext/ext_conf_builder.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/rubygems/ext/ext_conf_builder.rb b/lib/rubygems/ext/ext_conf_builder.rb
index 3e8aa950c9..ee70706dd4 100644
--- a/lib/rubygems/ext/ext_conf_builder.rb
+++ b/lib/rubygems/ext/ext_conf_builder.rb
@@ -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