aboutsummaryrefslogtreecommitdiffstats
path: root/win32/rm.bat
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-23 05:32:01 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-23 05:32:01 +0000
commit52a67fe60d08eb982586695b8bd6b1ceb32b30da (patch)
treef646169c2368463a264425eae104519995a29a98 /win32/rm.bat
parent69d80a31202da7ab038f3ced858fc064e75d43f6 (diff)
downloadruby-52a67fe60d08eb982586695b8bd6b1ceb32b30da.tar.gz
* Makefile.in, */Makefile.sub, common.mk (clean-local, distclean-local):
separate files under directories due to directory separator. * */Makefile.sub (MKFILES): common.mk and */Makefile.sub should not be removed. * win32/Makefile.sub, wince/Makefile.sub: $* cannot appear in explicit rules. * cygwin/GNUmakefile.in: some mingw stuffs were missed. * lib/mkmf.rb (create_makefile): Borland make wrongly removes braces from command lines. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6001 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/rm.bat')
-rwxr-xr-xwin32/rm.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/rm.bat b/win32/rm.bat
index ee18ea6946..c7307617ee 100755
--- a/win32/rm.bat
+++ b/win32/rm.bat
@@ -1,9 +1,9 @@
@echo off
-::: $Id$
+::: $Id: rm.bat,v 1.1 2004/03/21 23:21:30 nobu Exp $
if "%1" == "-f" shift
:begin
if "%1" == "" goto :end
-if exist %1 del %1
+if exist "%1" del "%1"
shift
goto :begin
:end