summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-11 07:35:13 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-11 07:35:13 +0000
commit13e15287cb565afc55082d5973fec43c22ab8730 (patch)
tree2fba4e4c8d2bf45315cf1ee1cc83392d8b6ba6dd /ext
parent7c4d749d18e8b471fafb52ce35a957ead075bdea (diff)
extmk.rb: do not exclude readline
* ext/extmk.rb: do not exclude readline by default on win32. it would not be completely impossible. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49212 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rwxr-xr-xext/extmk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb
index 77a2d87700..a7eea62a27 100755
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -496,7 +496,7 @@ ext_prefix = "#{$top_srcdir}/ext"
exts = $static_ext.sort_by {|t, i| i}.collect {|t, i| t}
default_exclude_exts =
if $mswin or $mingw
- %w'pty readline syslog'
+ %w'pty syslog'
else
%w'*win32*'
end