diff options
| author | Glenn Morris | 2007-02-20 04:08:17 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-02-20 04:08:17 +0000 |
| commit | 70e48c86169403b122b8bd9795e071c3e1b0b957 (patch) | |
| tree | 5488a62454384c7bad176e0a866b1368f441227d /lib-src | |
| parent | 0971f8877998767da908cd44e1067256f644e74f (diff) | |
| download | emacs-70e48c86169403b122b8bd9795e071c3e1b0b957.tar.gz emacs-70e48c86169403b122b8bd9795e071c3e1b0b957.zip | |
Ulrich Mueller <ulm at kph.uni-mainz.de> (tiny change):
(EMACS, EMACSOPT): New variables.
(blessmail): Use `--no-site-file' when compiling.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index bddabd364ad..e8427627dd8 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -23,6 +23,10 @@ | |||
| 23 | # inherited from the environment. | 23 | # inherited from the environment. |
| 24 | SHELL = /bin/sh | 24 | SHELL = /bin/sh |
| 25 | 25 | ||
| 26 | # Following ../lisp/Makefile.in. | ||
| 27 | EMACS = ../src/emacs | ||
| 28 | EMACSOPT = -batch --no-site-file --multibyte | ||
| 29 | |||
| 26 | # ==================== Things `configure' will edit ==================== | 30 | # ==================== Things `configure' will edit ==================== |
| 27 | 31 | ||
| 28 | CC=@CC@ | 32 | CC=@CC@ |
| @@ -279,7 +283,7 @@ vcdiff: $(srcdir)/vcdiff | |||
| 279 | 283 | ||
| 280 | #ifdef MOVEMAIL_NEEDS_BLESSING | 284 | #ifdef MOVEMAIL_NEEDS_BLESSING |
| 281 | blessmail: | 285 | blessmail: |
| 282 | ../src/emacs -batch -l $(srcdir)/../lisp/mail/blessmail.el | 286 | $(EMACS) $(EMACSOPT) -l $(srcdir)/../lisp/mail/blessmail.el |
| 283 | chmod +x blessmail | 287 | chmod +x blessmail |
| 284 | #endif | 288 | #endif |
| 285 | 289 | ||