mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/Makefile.sub: suppress a strange error message when RMALL
found no such file. * win32/rmall.bat: new. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
43b4bae567
commit
205cc6c068
3 changed files with 13 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Sun Dec 26 23:49:47 2010 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* win32/Makefile.sub: suppress a strange error message when RMALL
|
||||
found no such file.
|
||||
* win32/rmall.bat: new.
|
||||
|
||||
Sun Dec 26 21:23:23 2010 <kosaki.motohiro@gmail.com>
|
||||
|
||||
* win32/Makefile.sub: fix 'nmake clean-enc' breakage since r28322.
|
||||
|
|
|
@ -72,7 +72,7 @@ IFCHANGE = $(COMSPEC) /C $(srcdir:/=\)\win32\ifchange.bat
|
|||
RM = $(COMSPEC) /C $(srcdir:/=\)\win32\rm.bat
|
||||
RMDIR = $(COMSPEC) /C $(srcdir:/=\)\win32\rmdirs.bat
|
||||
RMDIRS = $(COMSPEC) /C $(srcdir:/=\)\win32\rmdirs.bat
|
||||
RMALL = $(COMSPEC) /C rmdir /s /q
|
||||
RMALL = $(COMSPEC) /C $(srcdir:/=\)\win32\rmall.bat
|
||||
CP = copy > nul
|
||||
MV = move > nul
|
||||
!if !defined(BASERUBY)
|
||||
|
|
6
win32/rmall.bat
Normal file
6
win32/rmall.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
@echo off
|
||||
|
||||
if "%1" == "" goto :end
|
||||
if exist "%1" rmdir /s /q "%1"
|
||||
|
||||
:end
|
Loading…
Reference in a new issue