[前][次][番号順一覧][スレッド一覧]

ruby-changes:17305

From: usa <ko1@a...>
Date: Tue, 21 Sep 2010 22:26:08 +0900 (JST)
Subject: [ruby-changes:17305] Ruby:r29309 (trunk): * tool/mkconfig.rb: fixed build problem on mswin64 introduced in r29278.

usa	2010-09-21 22:20:07 +0900 (Tue, 21 Sep 2010)

  New Revision: 29309

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29309

  Log:
    * tool/mkconfig.rb: fixed build problem on mswin64 introduced in r29278.

  Modified files:
    trunk/ChangeLog
    trunk/tool/mkconfig.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29308)
+++ ChangeLog	(revision 29309)
@@ -1,3 +1,7 @@
+Tue Sep 21 22:18:30 2010  NAKAMURA Usaku  <usa@r...>
+
+	* tool/mkconfig.rb: fixed build problem on mswin64 introduced in r29278.
+
 Tue Sep 21 02:42:35 2010  Kazuhiro NISHIYAMA  <zn@m...>
 
 	* test/pathname/test_pathname.rb (TestPathname#test_mkdir): fix typo.
Index: tool/mkconfig.rb
===================================================================
--- tool/mkconfig.rb	(revision 29308)
+++ tool/mkconfig.rb	(revision 29309)
@@ -35,7 +35,7 @@
 ]
 
 arch = RUBY_PLATFORM
-win32 = /mswin32/ =~ arch
+win32 = /mswin/ =~ arch
 v_fast = []
 v_others = []
 vars = {}

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]