summaryrefslogtreecommitdiff
path: root/instruby.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-30 16:34:01 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-30 16:34:01 +0000
commitc42a5df5c15514f3bdd385fcc4209afede940686 (patch)
tree2743a45814ed318f42133f37462453d6444157a8 /instruby.rb
parentd5bfa31f824005f7a8ce6c2bae1fafd2461aad80 (diff)
* ext/extmk.rb: use RbConfig instead of Config.
* instruby.rb: ditto. * lib/rubygems.rb: ditto. * test/rubygems/test_config.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23313 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rwxr-xr-xinstruby.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/instruby.rb b/instruby.rb
index 4cb27848d1..20ce449214 100755
--- a/instruby.rb
+++ b/instruby.rb
@@ -101,13 +101,13 @@ def parse_args(argv = ARGV)
$destdir ||= $mflags.defined?("DESTDIR")
if $extout ||= $mflags.defined?("EXTOUT")
- Config.expand($extout)
+ RbConfig.expand($extout)
end
$continue = $mflags.set?(?k)
if $installed_list ||= $mflags.defined?('INSTALLED_LIST')
- Config.expand($installed_list, RbConfig::CONFIG)
+ RbConfig.expand($installed_list, RbConfig::CONFIG)
$installed_list = open($installed_list, "ab")
$installed_list.sync = true
end