diff options
| -rw-r--r-- | nt/ChangeLog | 5 | ||||
| -rwxr-xr-x | nt/configure.bat | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 34cff6a7b79..aec140dbdb9 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-02-01 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * configure.bat: Use "rm -f" instead of "del /f", as the latter | ||
| 4 | is not supported by Windows 9X's COMMAND.COM. | ||
| 5 | |||
| 1 | 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * configure.bat: Make sure redirection is preceeded by a blank, to | 8 | * 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 | |||
| 253 | copy /b config.settings+%MAKECMD%.defs+..\lib-src\makefile.w32-in ..\lib-src\makefile | 253 | copy /b config.settings+%MAKECMD%.defs+..\lib-src\makefile.w32-in ..\lib-src\makefile |
| 254 | copy /b config.settings+%MAKECMD%.defs+..\src\makefile.w32-in ..\src\makefile | 254 | copy /b config.settings+%MAKECMD%.defs+..\src\makefile.w32-in ..\src\makefile |
| 255 | if not exist ..\lisp\Makefile.unix rename ..\lisp\Makefile.in Makefile.unix | 255 | if not exist ..\lisp\Makefile.unix rename ..\lisp\Makefile.in Makefile.unix |
| 256 | if exist ..\lisp\makefile del /f ..\lisp\makefile | 256 | if exist ..\lisp\makefile rm -f ../lisp/[Mm]akefile |
| 257 | copy /b config.settings+%MAKECMD%.defs+..\lisp\makefile.w32-in ..\lisp\makefile | 257 | copy /b config.settings+%MAKECMD%.defs+..\lisp\makefile.w32-in ..\lisp\makefile |
| 258 | rem Use the default (no-op) Makefile.in if the nt version is not present. | 258 | rem Use the default (no-op) Makefile.in if the nt version is not present. |
| 259 | if exist ..\leim\makefile.w32-in copy /b config.settings+%MAKECMD%.defs+..\leim\makefile.w32-in ..\leim\makefile | 259 | if exist ..\leim\makefile.w32-in copy /b config.settings+%MAKECMD%.defs+..\leim\makefile.w32-in ..\leim\makefile |