summaryrefslogtreecommitdiff
path: root/ext/dl/win32
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 /ext/dl/win32
parent0ab057280cee1b67b83bd4e9b1e9a8f5806c7bf1 (diff)
* 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
Diffstat (limited to 'ext/dl/win32')
-rw-r--r--ext/dl/win32/extconf.rb2
1 files changed, 1 insertions, 1 deletions
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