summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-05 01:43:09 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-05 01:43:09 +0000
commit2ae30c3fa212e979f950e8e7bbcadf0334e671d4 (patch)
treed900fee7e50743b908f46480f2f1a734e859d495
parent0094cd8c6413a6af824ef2f25f143a626af4aa52 (diff)
* tool/mkrunnable.rb: fix for native mswin compile.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog2
-rwxr-xr-xtool/mkrunnable.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 448dd8d152..863e3094ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -47,7 +47,7 @@ Wed Jun 5 00:09:32 2013 Tanaka Akira <akr@fsij.org>
Tue Jun 4 23:44:02 2013 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
- * object.c (rb_Hash): fix docs. patched by Stefan Schüßler.
+ * object.c (rb_Hash): fix docs. patched by Stefan Sch"ussler.
[ruby-core:55299] [Bug #8487]
Tue Jun 4 23:16:49 2013 Benoit Daloze <eregontp@gmail.com>
diff --git a/tool/mkrunnable.rb b/tool/mkrunnable.rb
index dda49ed769..82de4eee13 100755
--- a/tool/mkrunnable.rb
+++ b/tool/mkrunnable.rb
@@ -36,7 +36,7 @@ end
alias ln_dir_safe ln_safe
-if /mingw|mswin/ =~ CROSS_COMPILING
+if /mingw|mswin/ =~ (CROSS_COMPILING || RUBY_PLATFORM)
extend Mswin
end