* ext/extmk.rb: skip linking when libraries to be preloaded not

compiled.  [ruby-list:39561]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6171 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-04-15 23:27:12 +00:00
parent d0f38773d1
commit 6bfa557f8e
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Fri Apr 16 08:27:08 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/extmk.rb: skip linking when libraries to be preloaded not
compiled. [ruby-list:39561]
Thu Apr 15 19:57:11 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* process.c (pst_success_p): new method Process::Status#success?.
@ -17,7 +22,7 @@ Thu Apr 15 19:26:54 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* dir.c (push_braces, rb_push_glob): Dir.glob() should handle escaped
'{' and '}' and ','.
[ruby-dev:23376]
[ruby-dev:23376]
Thu Apr 15 17:12:13 2004 Tanaka Akira <akr@m17n.org>

View File

@ -358,8 +358,8 @@ if $extlist.size > 0
l = list.size
if (while l > 0; break true if r.include?(list[l-=1][1]) end)
list.insert(l + 1, e)
next
end
next
end
f = format("%s/%s.%s", s, i, $LIBEXT)
if File.exist?(f)