summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-28 14:29:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-28 14:29:35 +0000
commitf7ae8a16cf94268d4a163cf32ae557093d21ccda (patch)
tree83f5debb400885909a82b46a86c08cf1d9d148ff
parentf0a534a7f758146ec419a1c75e700cc6a8ab2d73 (diff)
downloadruby-f7ae8a16cf94268d4a163cf32ae557093d21ccda.tar.gz
ruby-f7ae8a16cf94268d4a163cf32ae557093d21ccda.tar.xz
ruby-f7ae8a16cf94268d4a163cf32ae557093d21ccda.zip
* ext/configsub.rb: $defout is obsolete.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ext/configsub.rb2
1 files changed, 1 insertions, 1 deletions
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] || $&}