* ext/extmk.rb: $extstatic is Array or nil now. [ruby-talk:93383]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-02-22 05:33:36 +00:00
parent 329b4782ff
commit 0990e0e8fc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sun Feb 22 14:33:32 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/extmk.rb: $extstatic is Array or nil now. [ruby-talk:93383]
Sun Feb 22 13:05:37 2004 akira yamada <akira@ruby-lang.org>
* lib/uri/mailto.rb (URI::MailTo::to_s): should include fragment.

View File

@ -247,7 +247,7 @@ MTIMES = [__FILE__, 'rbconfig.rb', srcdir+'/lib/mkmf.rb'].collect {|f| File.mtim
# get static-link modules
$static_ext = {}
if $extstatic
$extstatic.split(/[\s,]+/).each do |target|
$extstatic.each do |target|
target = target.downcase if /mswin32|bccwin32/ =~ RUBY_PLATFORM
$static_ext[target] = $static_ext.size
end