aboutsummaryrefslogtreecommitdiffstats
path: root/leim
diff options
context:
space:
mode:
authorPaul Eggert2015-02-23 10:09:51 -0800
committerPaul Eggert2015-02-23 10:10:24 -0800
commit6b62d265891cf28e263ff4c99054e30ffb1fb2b3 (patch)
tree6e82dd1f8471e9369f160ed07dc35aa4890f1f53 /leim
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 'leim')
-rw-r--r--leim/ChangeLog7
-rw-r--r--leim/Makefile.in2
2 files changed, 8 insertions, 1 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 4bda9a64335..a8dbca29526 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,10 @@
12015-02-23 Pete Williamson <petewil0@googlemail.com> (tiny change)
2
3 Use ${EXEEXT} more uniformly in makefiles
4 When porting Emacs to run on NaCl, we need to make sure that we always
5 call it with the proper extension (.nexe in this case) during the build.
6 * Makefile.in (EMACS): Append ${EXEEXT}.
7
12015-01-04 Paul Eggert <eggert@cs.ucla.edu> 82015-01-04 Paul Eggert <eggert@cs.ucla.edu>
2 9
3 Less 'make' chatter for leim 10 Less 'make' chatter for leim
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 573acf7678c..2ec03db49b7 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -47,7 +47,7 @@ unexport EMACSDATA EMACSDOC EMACSPATH
47 47
48# Which Emacs to use to convert TIT files to Emacs Lisp files, 48# Which Emacs to use to convert TIT files to Emacs Lisp files,
49# and generate the file leim-list.el. 49# and generate the file leim-list.el.
50EMACS = ../src/emacs 50EMACS = ../src/emacs${EXEEXT}
51 51
52# How to run Emacs. 52# How to run Emacs.
53# Prevent any setting of EMACSLOADPATH in user environment causing problems. 53# Prevent any setting of EMACSLOADPATH in user environment causing problems.