From ee8addc13ffbacd66a4847d5adb917b5d1fc0601 Mon Sep 17 00:00:00 2001 From: eban Date: Mon, 25 Nov 2002 11:00:03 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ ext/extmk.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bc305768bf..69a6be5fd6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Nov 25 19:55:38 2002 WATANABE Hirofumi + + * ext/extmk.rb (extmake): return true if not dynamic and not static. + Mon Nov 25 01:08:40 2002 WATANABE Hirofumi * dln.c: revert and add the MAXPATHLEN definition on mswin32/mingw32. diff --git a/ext/extmk.rb b/ext/extmk.rb index 60ee34b226..a0e848cfe9 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