1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/dl/win32/extconf.rb: Fix typo

by Santiago Pastorino <santiago@wyeworks.com>
  https://github.com/ruby/ruby/pull/221 fix GH-221

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38305 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-12-11 03:02:04 +00:00
parent 0ab057280c
commit addefaa6a3
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Tue Dec 11 12:00:19 2012 NARUSE, Yui <naruse@ruby-lang.org>
* ext/dl/win32/extconf.rb: Fix typo
by Santiago Pastorino <santiago@wyeworks.com>
https://github.com/ruby/ruby/pull/221 fix GH-221
Tue Dec 11 11:36:04 2012 NARUSE, Yui <naruse@ruby-lang.org>
* common.mk ($(MINIPRELUDE_C)): -I may break make dist.

View file

@ -1,3 +1,3 @@
if compiled?('dl') and !complied?('fiddle') and $mswin||$bccwin||$mingw||$cygwin
if compiled?('dl') and !compiled?('fiddle') and $mswin||$bccwin||$mingw||$cygwin
create_makefile('win32')
end