diff options
| author | Eli Zaretskii | 2001-01-30 13:45:05 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-01-30 13:45:05 +0000 |
| commit | c8eca71922244b73a247a19e3db183a9d9ccda3c (patch) | |
| tree | dd932e95596dcf9bef73bd66f9c27a8c16a75768 | |
| parent | 4bcec9a2c75700e57ac150e693762e11866d9ee5 (diff) | |
| download | emacs-c8eca71922244b73a247a19e3db183a9d9ccda3c.tar.gz emacs-c8eca71922244b73a247a19e3db183a9d9ccda3c.zip | |
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.
| -rw-r--r-- | nt/ChangeLog | 11 | ||||
| -rwxr-xr-x | nt/configure.bat | 8 |
2 files changed, 15 insertions, 4 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index d14531a5bfb..7f434dc0966 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2001-01-30 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * INSTALL: Copy the table of tested combinations of development | ||
| 4 | tools from confuigure.bat. Add suggestion to install Bash on | ||
| 5 | Windows 9X. | ||
| 6 | |||
| 7 | * configure.bat: Don't copy lisp/Makefile, it doesn't exist; copy | ||
| 8 | lisp/Makefile.in instead. Use "rm -f" where more than one file | ||
| 9 | needs to be deleted, since command.com in Windows 9X doesn't grok | ||
| 10 | more than one argument. | ||
| 11 | |||
| 1 | 2001-01-24 Andrew Innes <andrewi@gnu.org> | 12 | 2001-01-24 Andrew Innes <andrewi@gnu.org> |
| 2 | 13 | ||
| 3 | * makefile.w32-in (cleanall-other-dirs-nmake): | 14 | * makefile.w32-in (cleanall-other-dirs-nmake): |
diff --git a/nt/configure.bat b/nt/configure.bat index 8abb58c7ebc..11697a4a645 100755 --- a/nt/configure.bat +++ b/nt/configure.bat | |||
| @@ -187,7 +187,7 @@ gcc -c junk.c | |||
| 187 | if not exist junk.o goto checkw32api | 187 | if not exist junk.o goto checkw32api |
| 188 | gcc -mno-cygwin -c junk.c | 188 | gcc -mno-cygwin -c junk.c |
| 189 | if exist junk.o set nocygwin=Y | 189 | if exist junk.o set nocygwin=Y |
| 190 | del junk.o junk.c | 190 | rm -f junk.c junk.o |
| 191 | 191 | ||
| 192 | :checkw32api | 192 | :checkw32api |
| 193 | rem ---------------------------------------------------------------------- | 193 | rem ---------------------------------------------------------------------- |
| @@ -216,13 +216,13 @@ goto end | |||
| 216 | 216 | ||
| 217 | :gccOk | 217 | :gccOk |
| 218 | set COMPILER=gcc | 218 | set COMPILER=gcc |
| 219 | del junk.c junk.o | 219 | rm -f junk.c junk.o |
| 220 | echo Using 'gcc' | 220 | echo Using 'gcc' |
| 221 | goto genmakefiles | 221 | goto genmakefiles |
| 222 | 222 | ||
| 223 | :clOk | 223 | :clOk |
| 224 | set COMPILER=cl | 224 | set COMPILER=cl |
| 225 | del junk.c junk.obj | 225 | rm -f junk.c junk.obj |
| 226 | echo Using 'MSVC' | 226 | echo Using 'MSVC' |
| 227 | goto genmakefiles | 227 | goto genmakefiles |
| 228 | 228 | ||
| @@ -252,7 +252,7 @@ copy paths.h ..\src\epaths.h | |||
| 252 | copy /b config.settings+%MAKECMD%.defs+..\nt\makefile.w32-in ..\nt\makefile | 252 | 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 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 del /f ..\lisp\makefile |
| 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. |