diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-22 05:33:36 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-22 05:33:36 +0000 |
| commit | 4c941595bd79931f92bdbe08dc5392ebabb0407d (patch) | |
| tree | 58a061884772055d1f7a62c135378934939d291f /ext | |
| parent | ad320ec945454336d4d64f3cd9344b6dfc46fdf5 (diff) | |
| download | ruby-4c941595bd79931f92bdbe08dc5392ebabb0407d.tar.gz ruby-4c941595bd79931f92bdbe08dc5392ebabb0407d.tar.xz ruby-4c941595bd79931f92bdbe08dc5392ebabb0407d.zip | |
* ext/extmk.rb: $extstatic is Array or nil now. [ruby-talk:93383]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/extmk.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb index 1aefcb871..3e530e731 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -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 |
