From e282d78a443b20035689a0dd036c9b39faf9677d Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 18 Jun 2015 22:58:14 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ ext/extmk.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8aeadb8f7f..6b6a492678 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Jun 19 07:58:11 2015 Nobuyoshi Nakada + + * ext/extmk.rb: if no with-ext option is given, dafault to + enable everything. [ruby-dev:49108] [Bug #11280] + Fri Jun 19 06:30:07 2015 Koichi Sasada * bootstraptest/test_method.rb: remove a test because $SAFE=2 was 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