diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-25 11:00:03 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-25 11:00:03 +0000 |
commit | 43bb56a4a3f7852bd5dd240d22d68323f2310c24 (patch) | |
tree | 4c5764511260105d86272d06dac5e25de9e33782 | |
parent | 6ca4cf0325f60943b58ea56985400895ba44e98a (diff) | |
download | ruby-43bb56a4a3f7852bd5dd240d22d68323f2310c24.tar.gz ruby-43bb56a4a3f7852bd5dd240d22d68323f2310c24.tar.xz ruby-43bb56a4a3f7852bd5dd240d22d68323f2310c24.zip |
* ext/extmk.rb (extmake): return true if not dynamic and not static.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ext/extmk.rb | 2 |
2 files changed, 5 insertions, 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. diff --git a/ext/extmk.rb b/ext/extmk.rb index 60ee34b22..a0e848cfe 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -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 |