* Emacs loads site-start file when building blessmail
@ 2007-02-17 12:04 Ulrich Mueller
2007-02-20 4:08 ` Glenn Morris
0 siblings, 1 reply; 2+ messages in thread
From: Ulrich Mueller @ 2007-02-17 12:04 UTC (permalink / raw)
To: bug-gnu-emacs
Hi,
in Emacs 22.0.93 (but in 21.4 and in the current CVS version, too)
the blessmail script in lib-src is generated by executing:
../src/emacs -batch -l $(srcdir)/../lisp/mail/blessmail.el
Emacs should not call the site initialization here, so the option
"--no-site-file" should be added. Proposed patch is included below.
See also Gentoo Linux bug #166059,
<http://bugs.gentoo.org/show_bug.cgi?id=166059>.
Ulrich
--- emacs-22.0.93/lib-src/Makefile.in~ 2007-01-17 16:53:20.000000000 +0100
+++ emacs-22.0.93/lib-src/Makefile.in 2007-02-17 11:29:06.000000000 +0100
@@ -23,6 +23,10 @@
# inherited from the environment.
SHELL = /bin/sh
+# following two lines taken from ../lisp/Makefile.in
+EMACS = ../src/emacs
+EMACSOPT = -batch --no-site-file --multibyte
+
# ==================== Things `configure' will edit ====================
CC=@CC@
@@ -279,7 +283,7 @@
#ifdef MOVEMAIL_NEEDS_BLESSING
blessmail:
- ../src/emacs -batch -l $(srcdir)/../lisp/mail/blessmail.el
+ $(EMACS) $(EMACSOPT) -l $(srcdir)/../lisp/mail/blessmail.el
chmod +x blessmail
#endif
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-02-20 4:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-17 12:04 Emacs loads site-start file when building blessmail Ulrich Mueller
2007-02-20 4:08 ` Glenn Morris
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.