From e282d78a443b20035689a0dd036c9b39faf9677d Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 18 Jun 2015 22:58:14 +0000 Subject: extmk.rb: fix with-ext condition * ext/extmk.rb: if no with-ext option is given, dafault to enable everything. [ruby-dev:49108] [Bug #11280] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/extmk.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/extmk.rb') diff --git a/ext/extmk.rb b/ext/extmk.rb index 84fd950d40..3adcb465b0 100755 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -503,7 +503,7 @@ default_exclude_exts = end withes, withouts = [["--with", nil], ["--without", default_exclude_exts]].collect {|w, d| if !(w = %w[-extensions -ext].collect {|o|arg_config(w+o)}).any? - d ? proc {|c1| d.any?(&c1)} : proc {false} + d ? proc {|c1| d.any?(&c1)} : proc {true} elsif (w = w.grep(String)).empty? proc {true} else -- cgit v1.2.3