# HG changeset patch # User Ben Key # Date 1090644747 0 # Node ID d341e83af4f240a98a4a4ca33774ed2962f5533e # Parent 74997dbec4d2eec2568011ed5103a3d21a4f4eae Removed the various "echo." lines from lisp\makefile.w32-in and nt\makefile.w32-in. They caused mingw32-make.exe bootstrap to fail with the following error if cmd.exe was being used as the shell: "process_begin: CreateProcess((null), echo., ...) failed." I replaced the "@echo." lines in nt\makefile.w32-in with "@echo ." This writes a . to the screen but that is far more desirable than make bootstrap failing. I replaced the "echo. ..." line in lisp\makefile.w32-in with "echo ;;; ...". This writes an extra comment line to loaddefs.el. Again this is far more desirable than make bootstrap failing. NOTE: I am using cmd.exe as my shell when building Emacs with MinGW instead of the sh.exe that comes with msys because when I use sh.exe as my shell, loaddefs.el does not get properly generated and I get various auto load errors. diff -r 74997dbec4d2 -r d341e83af4f2 lisp/makefile.w32-in --- a/lisp/makefile.w32-in Fri Jul 23 18:25:57 2004 +0000 +++ b/lisp/makefile.w32-in Sat Jul 24 04:52:27 2004 +0000 @@ -209,7 +209,7 @@ echo (autoload 'define-derived-mode "derived")>> $@ echo (autoload 'encoded-kbd-mode "encoded-kb")>> $@ echo (defvar cvs-global-menu nil)>> $@ - echo. >> $@ + echo ;;; >> $@ echo ;;; Local Variables:>> $@ echo ;;; version-control: never>> $@ echo ;;; no-byte-compile: t>> $@ diff -r 74997dbec4d2 -r d341e83af4f2 nt/makefile.w32-in --- a/nt/makefile.w32-in Fri Jul 23 18:25:57 2004 +0000 +++ b/nt/makefile.w32-in Sat Jul 24 04:52:27 2004 +0000 @@ -111,10 +111,10 @@ doit: maybe-bootstrap-CMD: doit - @echo. + @echo . @if not EXIST ..\lisp\abbrev.elc echo Essential Lisp files seem to be missing. You should either @if not EXIST ..\lisp\abbrev.elc echo do 'make bootstrap' or create 'lisp/abbrev.elc' somehow - @echo. + @echo . @if not EXIST ..\lisp\abbrev.elc exit -1 maybe-bootstrap-SH: doit