emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/makefile.w32-in


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/makefile.w32-in
Date: Fri, 02 Jun 2006 09:48:28 +0000

Index: emacs/lisp/makefile.w32-in
diff -u emacs/lisp/makefile.w32-in:1.57 emacs/lisp/makefile.w32-in:1.58
--- emacs/lisp/makefile.w32-in:1.57     Sun Jan 29 23:03:30 2006
+++ emacs/lisp/makefile.w32-in  Fri Jun  2 09:48:28 2006
@@ -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
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]