aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-11 03:02:04 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-11 03:02:04 +0000
commitaddefaa6a3ee7308b031e843ce222d99d218d1c4 (patch)
treeba5e45b2e8c85b78ff7a1e8dc6ada08d5b4ef5ae
parent0ab057280cee1b67b83bd4e9b1e9a8f5806c7bf1 (diff)
downloadruby-addefaa6a3ee7308b031e843ce222d99d218d1c4.tar.gz
* 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
-rw-r--r--ChangeLog6
-rw-r--r--ext/dl/win32/extconf.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c74d2edd00..96c2d687a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/ext/dl/win32/extconf.rb b/ext/dl/win32/extconf.rb
index 3e96b521ee..03590f24fa 100644
--- a/ext/dl/win32/extconf.rb
+++ b/ext/dl/win32/extconf.rb
@@ -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