From d8dd643d971e259139fa545526538cadf533ed9d Mon Sep 17 00:00:00 2001 From: Katsumi Yamaoka Date: Fri, 24 Dec 2004 06:23:33 +0000 Subject: [PATCH] (.texi): Set LANG=C to avoid NLS translations. (makeinfo): Ditto. --- texi/ChangeLog | 5 +++++ texi/Makefile.in | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/texi/ChangeLog b/texi/ChangeLog index f65f8e53f..0a5b6426b 100644 --- a/texi/ChangeLog +++ b/texi/ChangeLog @@ -1,3 +1,8 @@ +2004-12-24 Katsumi Yamaoka + + * Makefile.in (.texi): Set LANG=C to avoid NLS translations. + (makeinfo): Ditto. + 2004-12-08 Reiner Steib * gnusref.tex: Mention `gnus-summary-limit-to-recipient' and diff --git a/texi/Makefile.in b/texi/Makefile.in index c00fcea87..e3dd8241b 100644 --- a/texi/Makefile.in +++ b/texi/Makefile.in @@ -28,7 +28,8 @@ most: texi2latex.elc latex latexps .texi: if test "x$(MAKEINFO)" != "xno" ; then \ - $(MAKEINFO) -I $(srcdir) --enable-encoding -o $* $<; \ + LANG=C; export LANG; \ + $(MAKEINFO) -I $(srcdir) --enable-encoding -o $* $<; \ else \ rm -f $@; \ $(EMACSINFO) $<; \ @@ -96,8 +97,8 @@ clean: thumbdta.tex xface.tex *.tpt gnus-manual-*.pdf gnus-manual-*.ps.gz makeinfo: - makeinfo --enable-encoding -o gnus gnus.texi - makeinfo --enable-encoding -o message message.texi + LANG=C; export LANG; makeinfo --enable-encoding -o gnus gnus.texi + LANG=C; export LANG; makeinfo --enable-encoding -o message message.texi texi2latex.elc: texi2latex.el srcdir=$(srcdir)/../lisp $(EMACSCOMP) -l $(srcdir)/../lisp/dgnushack.el --eval '(byte-compile-file "$(srcdir)/texi2latex.el")' -- 2.34.1