From: Eli Zaretskii Date: Thu, 1 Feb 2001 09:52:05 +0000 (+0000) Subject: Use "rm -f" instead of "del /f", as the latter X-Git-Tag: emacs-pretest-21.0.98~230 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1194084946fd7da22cf4675fe2c4aad27b9cd0fc;p=emacs.git Use "rm -f" instead of "del /f", as the latter is not supported by Windows 9X's COMMAND.COM. --- diff --git a/nt/ChangeLog b/nt/ChangeLog index 34cff6a7b79..aec140dbdb9 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,8 @@ +2001-02-01 Eli Zaretskii + + * configure.bat: Use "rm -f" instead of "del /f", as the latter + is not supported by Windows 9X's COMMAND.COM. + 2001-01-31 Eli Zaretskii * configure.bat: Make sure redirection is preceeded by a blank, to diff --git a/nt/configure.bat b/nt/configure.bat index edbafe497aa..3e8a506da39 100755 --- a/nt/configure.bat +++ b/nt/configure.bat @@ -253,7 +253,7 @@ copy /b config.settings+%MAKECMD%.defs+..\nt\makefile.w32-in ..\nt\makefile copy /b config.settings+%MAKECMD%.defs+..\lib-src\makefile.w32-in ..\lib-src\makefile copy /b config.settings+%MAKECMD%.defs+..\src\makefile.w32-in ..\src\makefile if not exist ..\lisp\Makefile.unix rename ..\lisp\Makefile.in Makefile.unix -if exist ..\lisp\makefile del /f ..\lisp\makefile +if exist ..\lisp\makefile rm -f ../lisp/[Mm]akefile copy /b config.settings+%MAKECMD%.defs+..\lisp\makefile.w32-in ..\lisp\makefile rem Use the default (no-op) Makefile.in if the nt version is not present. if exist ..\leim\makefile.w32-in copy /b config.settings+%MAKECMD%.defs+..\leim\makefile.w32-in ..\leim\makefile