* win32/makedirs.bat: new command to make intermediate
directories, and not to report any errors if the directory already exists. * win32/Makefile.sub (MAKEDIRS): enable command extensions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34862 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f9cec70898
commit
29c630e71d
@ -1,3 +1,11 @@
|
|||||||
|
Thu Mar 1 15:40:05 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* win32/makedirs.bat: new command to make intermediate
|
||||||
|
directories, and not to report any errors if the directory
|
||||||
|
already exists.
|
||||||
|
|
||||||
|
* win32/Makefile.sub (MAKEDIRS): enable command extensions.
|
||||||
|
|
||||||
Thu Mar 1 01:25:43 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
Thu Mar 1 01:25:43 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* regparse.c (is_onechar_cclass): optimize character class
|
* regparse.c (is_onechar_cclass): optimize character class
|
||||||
|
@ -74,6 +74,7 @@ RM = $(COMSPEC) /C $(srcdir:/=\)\win32\rm.bat
|
|||||||
RMDIR = $(COMSPEC) /C $(srcdir:/=\)\win32\rmdirs.bat
|
RMDIR = $(COMSPEC) /C $(srcdir:/=\)\win32\rmdirs.bat
|
||||||
RMDIRS = $(COMSPEC) /C $(srcdir:/=\)\win32\rmdirs.bat
|
RMDIRS = $(COMSPEC) /C $(srcdir:/=\)\win32\rmdirs.bat
|
||||||
RMALL = $(COMSPEC) /C $(srcdir:/=\)\win32\rmall.bat
|
RMALL = $(COMSPEC) /C $(srcdir:/=\)\win32\rmall.bat
|
||||||
|
MAKEDIRS = $(COMSPEC) /E:ON /C $(srcdir:/=\)\win32\makedirs.bat
|
||||||
CP = copy > nul
|
CP = copy > nul
|
||||||
MV = move > nul
|
MV = move > nul
|
||||||
!if !defined(BASERUBY)
|
!if !defined(BASERUBY)
|
||||||
@ -289,8 +290,6 @@ DEFAULT_PRELUDES = $(NO_GEM_PRELUDE)
|
|||||||
DEFAULT_PRELUDES = $(YES_GEM_PRELUDE)
|
DEFAULT_PRELUDES = $(YES_GEM_PRELUDE)
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
MAKEDIRS = mkdir
|
|
||||||
|
|
||||||
!if !defined(STACK)
|
!if !defined(STACK)
|
||||||
!if "$(ARCH)" == "x64" || "$(ARCH)" == "ia64"
|
!if "$(ARCH)" == "x64" || "$(ARCH)" == "ia64"
|
||||||
STACK = 0x400000
|
STACK = 0x400000
|
||||||
|
3
win32/makedirs.bat
Executable file
3
win32/makedirs.bat
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
@echo off
|
||||||
|
setlocal EnableExtensions
|
||||||
|
for %%I in (%*) do if not exist "%%~I/." mkdir "%%~I"
|
0
win32/rmall.bat
Normal file → Executable file
0
win32/rmall.bat
Normal file → Executable file
Loading…
x
Reference in New Issue
Block a user