aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-20 20:05:30 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-20 20:05:30 +0000
commit7ff4413eabb1bb93521d49678bad6a2d6ca60014 (patch)
treeafb12e9806717f74b7db01d51a6113e65e519d63
parentb0cd40849a55d3e03676884ea913a8c36e1da1eb (diff)
downloadruby-7ff4413eabb1bb93521d49678bad6a2d6ca60014.tar.gz
* win32/Makefile.sub (fake.rb): fixed wrong RUBY_PLATFORM, to correctly
install win32.h. [ruby-core:58801][Bug #9199] reported by arton. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44307 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--win32/Makefile.sub2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d346ba0940..c51bc1758c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat Dec 21 05:03:49 2013 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/Makefile.sub (fake.rb): fixed wrong RUBY_PLATFORM, to correctly
+ install win32.h.
+ [ruby-core:58801][Bug #9199] reported by arton.
+
Fri Dec 20 17:52:50 2013 Koichi Sasada <ko1@atdot.net>
* vm_method.c: check definition of
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 216fb9dcf3..305f37df55 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -1040,7 +1040,7 @@ class Object
CROSS_COMPILING = RUBY_PLATFORM
remove_const :RUBY_PLATFORM
remove_const :RUBY_VERSION
- RUBY_PLATFORM = "$(ARCH)"
+ RUBY_PLATFORM = "$(arch)"
RUBY_VERSION = "$(MAJOR).$(MINOR).$(TEENY)"
end
class File