aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/Makefile.in
diff options
context:
space:
mode:
authorPaul Eggert2015-02-23 10:09:51 -0800
committerPaul Eggert2015-02-23 10:10:24 -0800
commit6b62d265891cf28e263ff4c99054e30ffb1fb2b3 (patch)
tree6e82dd1f8471e9369f160ed07dc35aa4890f1f53 /lib-src/Makefile.in
parenta0edb0160b482bdb9ea48b82e440a3ec5763dd11 (diff)
downloademacs-6b62d265891cf28e263ff4c99054e30ffb1fb2b3.tar.gz
emacs-6b62d265891cf28e263ff4c99054e30ffb1fb2b3.zip
Use ${EXEEXT} more uniformly in makefiles
When porting Emacs to run on NaCl, we need to make sure that we always call it with the proper extension (.nexe in this case) during the build. * leim/Makefile.in, lib-src/Makefile.in, lisp/Makefile.in (EMACS): Append ${EXEEXT}. (tiny change)
Diffstat (limited to 'lib-src/Makefile.in')
-rw-r--r--lib-src/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index d2705e7b5dc..6b5d379e38b 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -21,7 +21,7 @@
21SHELL = @SHELL@ 21SHELL = @SHELL@
22 22
23# Following ../lisp/Makefile.in. 23# Following ../lisp/Makefile.in.
24EMACS = ../src/emacs 24EMACS = ../src/emacs${EXEEXT}
25EMACSOPT = -batch --no-site-file --no-site-lisp 25EMACSOPT = -batch --no-site-file --no-site-lisp
26 26
27# ==================== Things `configure' will edit ==================== 27# ==================== Things `configure' will edit ====================