(.texi): Set LANG=C to avoid NLS translations.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Fri, 24 Dec 2004 06:23:33 +0000 (06:23 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Fri, 24 Dec 2004 06:23:33 +0000 (06:23 +0000)
(makeinfo): Ditto.

texi/ChangeLog
texi/Makefile.in

index f65f8e5..0a5b642 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * Makefile.in (.texi): Set LANG=C to avoid NLS translations.
+       (makeinfo): Ditto.
+
 2004-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
 
        * gnusref.tex: Mention `gnus-summary-limit-to-recipient' and 
index c00fcea..e3dd824 100644 (file)
@@ -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")'