mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
extmk.rb: cygwin case
* ext/extmk.rb: add cygwin case, nothing excluded. [ruby-core:73806] [Bug#12071] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53868 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cf87846f16
commit
9bfa5d917f
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Feb 19 11:08:32 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/extmk.rb: add cygwin case, nothing excluded.
|
||||
[ruby-core:73806] [Bug#12071]
|
||||
|
||||
Thu Feb 18 21:32:15 2016 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
|
||||
|
||||
* man/irb.1: fix output in EXAMPLES.
|
||||
|
|
|
@ -494,7 +494,10 @@ end unless $extstatic
|
|||
ext_prefix = "#{$top_srcdir}/ext"
|
||||
exts = $static_ext.sort_by {|t, i| i}.collect {|t, i| t}
|
||||
default_exclude_exts =
|
||||
if $mswin or $mingw
|
||||
case
|
||||
when $cygwin
|
||||
%w''
|
||||
when $mswin, $mingw
|
||||
%w'pty syslog'
|
||||
else
|
||||
%w'*win32*'
|
||||
|
|
Loading…
Add table
Reference in a new issue