diff options
author | Eli Zaretskii <eliz@gnu.org> | 2011-04-02 11:55:47 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2011-04-02 11:55:47 +0300 |
commit | 35eae264417272f74467ba42209c643988465085 (patch) | |
tree | 02ea3de85d8216a0b63a91dade0dad45d1ff40e4 /lisp/makefile.w32-in | |
parent | 8c74fcbddb64afa9ac8a75562634c80379ff24df (diff) | |
download | emacs-35eae264417272f74467ba42209c643988465085.tar.gz |
A better default for $(EMACS) in lisp/makefile.w32-in.
lisp/makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
Diffstat (limited to 'lisp/makefile.w32-in')
-rw-r--r-- | lisp/makefile.w32-in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index ed2fe4031b7..c844a8f6630 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -27,9 +27,9 @@ lisp = $(CURDIR) srcdir = $(CURDIR)/.. # You can specify a different executable on the make command line, -# e.g. "make EMACS=../src/emacs ...". +# e.g. "make EMACS=../bin/emacs ...". -EMACS = $(THISDIR)/../bin/emacs.exe +EMACS = ../src/$(BLD)/emacs.exe # Command line flags for Emacs. |