summaryrefslogtreecommitdiff
path: root/ext
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
commit0d95887b867eb8f32a1b255ee571bf80ea89a9e8 (patch)
tree83f5debb400885909a82b46a86c08cf1d9d148ff /ext
parenta644c35a99c043a7870bc3c550940052976ece56 (diff)
* ext/configsub.rb: $defout is obsolete.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/configsub.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/configsub.rb b/ext/configsub.rb
index 47689d7ec0..15d9a2e3d3 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] || $&}