summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-21 13:20:07 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-21 13:20:07 +0000
commite7381db962823f3d6f6e746b5bfedefd897d32d0 (patch)
treebfd1403a67e9747ef1439162fd15cf7ccfc06b13
parent39be861346d7fbc23575a7df8f260f8f3b099674 (diff)
* tool/mkconfig.rb: fixed build problem on mswin64 introduced in r29278.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29309 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rwxr-xr-xtool/mkconfig.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 36c03a9a9d..c4ec1381f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Sep 21 22:18:30 2010 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * tool/mkconfig.rb: fixed build problem on mswin64 introduced in r29278.
+
Tue Sep 21 02:42:35 2010 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* test/pathname/test_pathname.rb (TestPathname#test_mkdir): fix typo.
diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb
index d099eebeb9..160b6e5afe 100755
--- a/tool/mkconfig.rb
+++ b/tool/mkconfig.rb
@@ -35,7 +35,7 @@ module RbConfig
]
arch = RUBY_PLATFORM
-win32 = /mswin32/ =~ arch
+win32 = /mswin/ =~ arch
v_fast = []
v_others = []
vars = {}