diff options
| author | Eli Zaretskii | 2008-02-09 09:29:03 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-02-09 09:29:03 +0000 |
| commit | f96b6330e8ca4efe7e965e22c58a3e6e648e9bab (patch) | |
| tree | e23d36688a6221c93faced9d5807c3c6e1afceb2 | |
| parent | deeaffe11d28ca1b42e4f59c33a30d0e58698044 (diff) | |
| download | emacs-f96b6330e8ca4efe7e965e22c58a3e6e648e9bab.tar.gz emacs-f96b6330e8ca4efe7e965e22c58a3e6e648e9bab.zip | |
(lisp): New variable.
(EMACSLOADPATH): Use $(lisp). Add lisp/international and lisp/emacs-lisp.
| -rw-r--r-- | admin/ChangeLog | 6 | ||||
| -rw-r--r-- | admin/unidata/makefile.w32-in | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index 705eaff8052..d43c23bbeaf 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-02-09 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * unidata/makefile.w32-in (lisp): New variable. | ||
| 4 | (EMACSLOADPATH): Use $(lisp). Add lisp/international and | ||
| 5 | lisp/emacs-lisp. | ||
| 6 | |||
| 1 | 2008-02-04 Jason Rumney <jasonr@gnu.org> | 7 | 2008-02-04 Jason Rumney <jasonr@gnu.org> |
| 2 | 8 | ||
| 3 | * unidata/makefile.w32-in (unidata.txt): Use ARGQUOTE and DQUOTE macros. | 9 | * unidata/makefile.w32-in (unidata.txt): Use ARGQUOTE and DQUOTE macros. |
diff --git a/admin/unidata/makefile.w32-in b/admin/unidata/makefile.w32-in index 4a7ba1acb77..bf422f9e468 100644 --- a/admin/unidata/makefile.w32-in +++ b/admin/unidata/makefile.w32-in | |||
| @@ -22,7 +22,11 @@ | |||
| 22 | 22 | ||
| 23 | EMACS = ../../src/$(BLD)/emacs.exe | 23 | EMACS = ../../src/$(BLD)/emacs.exe |
| 24 | DSTDIR = ../../lisp/international | 24 | DSTDIR = ../../lisp/international |
| 25 | EMACSLOADPATH = $(CURDIR)/../../lisp | 25 | lisp = $(CURDIR)/../../lisp |
| 26 | # EMACSLOADPATH should include international, so Emacs finds encoded-kb. | ||
| 27 | # It should include emacs-lisp, so Emacs finds bytecomp. This is because | ||
| 28 | # lisp/subdirs.el is not generated yet when the commands below run. | ||
| 29 | EMACSLOADPATH = $(lisp);$(lisp)/international;$(lisp)/emacs-lisp | ||
| 26 | # Quote EMACS so it could be a file name with embedded whitespace | 30 | # Quote EMACS so it could be a file name with embedded whitespace |
| 27 | RUNEMACS = "$(EMACS)" -Q --multibyte -batch | 31 | RUNEMACS = "$(EMACS)" -Q --multibyte -batch |
| 28 | 32 | ||