mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/extmk.rb (extmake): return true if not dynamic and not static.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7ceb37d715
commit
ee8addc13f
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Nov 25 19:55:38 2002 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* ext/extmk.rb (extmake): return true if not dynamic and not static.
|
||||
|
||||
Mon Nov 25 01:08:40 2002 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* dln.c: revert and add the MAXPATHLEN definition on mswin32/mingw32.
|
||||
|
|
|
@ -36,7 +36,7 @@ def extmake(target)
|
|||
end
|
||||
|
||||
unless $ignore
|
||||
return if $nodynamic and not $static
|
||||
return true if $nodynamic and not $static
|
||||
end
|
||||
|
||||
init_mkmf
|
||||
|
|
Loading…
Reference in a new issue