# HG changeset patch # User Eli Zaretskii # Date 1149241708 0 # Node ID b1bc5d576c4ca8bec698fbcd9772d3246f8de59b # Parent 1e8648fd980ada52aa1a3b8c75726bcce67ffc00 (EMACS): Remove quotes from the Emacs executable file name. (emacs): Enclose the value of $(EMACS) in quotes. diff -r 1e8648fd980a -r b1bc5d576c4c lisp/makefile.w32-in --- a/lisp/makefile.w32-in Fri Jun 02 09:39:54 2006 +0000 +++ b/lisp/makefile.w32-in Fri Jun 02 09:48:28 2006 +0000 @@ -33,7 +33,7 @@ # You can specify a different executable on the make command line, # e.g. "make EMACS=../src/emacs ...". -EMACS = "$(THISDIR)/../bin/emacs.exe" +EMACS = $(THISDIR)/../bin/emacs.exe # Command line flags for Emacs. This must include --multibyte, # otherwise some files will not compile. @@ -61,8 +61,11 @@ $(lisp)/progmodes/cc-vars.el # The actual Emacs command run in the targets below. +# The quotes around $(EMACS) are here because the user could type +# it with forward slashes and without quotes, which will fail if +# the shell is cmd.exe. -emacs = $(EMACS) $(EMACSOPT) +emacs = "$(EMACS)" $(EMACSOPT) # Common command to find subdirectories