1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* win32/Makefile.sub (MAKEDIRS): use mkdir of cmd.exe instead of ruby.

[Bug #6103] [ruby-core:43012]

* win32/README.win32: added a notice about command extension of cmd.exe.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2012-02-29 07:13:04 +00:00
parent 70581477da
commit 31eb29fe97
3 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,10 @@
Wed Feb 29 16:11:34 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/Makefile.sub (MAKEDIRS): use mkdir of cmd.exe instead of ruby.
[Bug #6103] [ruby-core:43012]
* win32/README.win32: added a notice about command extension of cmd.exe.
Wed Feb 29 15:39:39 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* test/ruby/test_io.rb (TestIO#test_readpartial_locktmp): skip on

View file

@ -289,7 +289,7 @@ DEFAULT_PRELUDES = $(NO_GEM_PRELUDE)
DEFAULT_PRELUDES = $(YES_GEM_PRELUDE)
!endif
MAKEDIRS = $(BASERUBY) -run -e mkdir -- -p
MAKEDIRS = mkdir
!if !defined(STACK)
!if "$(ARCH)" == "x64" || "$(ARCH)" == "ia64"

View file

@ -25,7 +25,11 @@
* sed
* ruby 1.8
(5) If you want built binaries to run on Windows 95 series (including
(5) Enable Command Extension of your command line. It's the default behavior
of cmd.exe. If you want to enable it explicitly, run cmd.exe with /E:ON
option.
(6) If you want built binaries to run on Windows 95 series (including
98 and Me), you need unicows.lib at compile time, and unicows.dll
at run time.