Mercurial > emacs
changeset 35727:8e36e09f6fed
Don't copy lisp/Makefile, it doesn't exist; copy
lisp/Makefile.in instead. Use "rm -f" where more than one file
needs to be deleted, since command.com in Windows 9X doesn't grok
more than one argument.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Tue, 30 Jan 2001 13:43:35 +0000 |
parents | efa42820d1af |
children | 1ce38c072b5d |
files | nt/configure.bat |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/nt/configure.bat Tue Jan 30 13:43:00 2001 +0000 +++ b/nt/configure.bat Tue Jan 30 13:43:35 2001 +0000 @@ -187,7 +187,7 @@ if not exist junk.o goto checkw32api gcc -mno-cygwin -c junk.c if exist junk.o set nocygwin=Y -del junk.o junk.c +rm -f junk.c junk.o :checkw32api rem ---------------------------------------------------------------------- @@ -216,13 +216,13 @@ :gccOk set COMPILER=gcc -del junk.c junk.o +rm -f junk.c junk.o echo Using 'gcc' goto genmakefiles :clOk set COMPILER=cl -del junk.c junk.obj +rm -f junk.c junk.obj echo Using 'MSVC' goto genmakefiles @@ -252,7 +252,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 Makefile.unix +if not exist ..\lisp\Makefile.unix rename ..\lisp\Makefile.in Makefile.unix if exist ..\lisp\makefile del /f ..\lisp\makefile 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.