summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-13 00:17:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-13 00:17:31 +0000
commit1637dbeca7f6dcd98224a6e992258abffd46c512 (patch)
tree858e9aeb5e9f75e4d48ccf2cdb27924ab20a43af
parent9bded8aae94aacf03b308798bed7ee6a752ba099 (diff)
* {bcc,win}32/Makefile.sub (MV): use move instead of ren. [ruby-Bugs-17019]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15012 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--bcc32/Makefile.sub2
-rw-r--r--win32/Makefile.sub2
3 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8390eacb30..ad73ba4045 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jan 13 09:17:29 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * {bcc,win}32/Makefile.sub (MV): use move instead of ren. [ruby-Bugs-17019]
+
Sun Jan 13 01:52:31 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* enc/make_encdb.rb: should work on Ruby 1.8. [ruby-dev:33069]
diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub
index 317ad2092c..94e5478af3 100644
--- a/bcc32/Makefile.sub
+++ b/bcc32/Makefile.sub
@@ -72,7 +72,7 @@ PURIFY =
AUTOCONF = autoconf
RM = $(srcdir:/=\)\win32\rm.bat
CP = copy > nul
-MV = ren > nul
+MV = move > nul
!if !defined(PROCESSOR_ARCHITECTURE)
PROCESSOR_ARCHITECTURE = x86
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 2c6e8c4afd..adcde7424a 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -65,7 +65,7 @@ PURIFY =
AUTOCONF = autoconf
RM = $(COMSPEC) /C $(srcdir:/=\)\win32\rm.bat
CP = copy > nul
-MV = ren > nul
+MV = move > nul
!if !defined(BASERUBY)
BASERUBY = ruby
!endif