From f7ae8a16cf94268d4a163cf32ae557093d21ccda Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 28 Jul 2003 14:29:35 +0000 Subject: * ext/configsub.rb: $defout is obsolete. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/configsub.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/configsub.rb b/ext/configsub.rb index 47689d7ec..15d9a2e3d 100644 --- a/ext/configsub.rb +++ b/ext/configsub.rb @@ -24,7 +24,7 @@ BEGIN { CONFIG['top_srcdir'] = File.expand_path($srcdir || ".") CONFIG['RUBY_INSTALL_NAME'] = $install_name if $install_name CONFIG['RUBY_SO_NAME'] = $so_name if $so_name - $defout = open($output, 'w') if $output + $stdout = open($output, 'w') if $output } gsub!(/@(\w+)@/) {CONFIG[$1] || $&} -- cgit