>>>> "SL" == SL Baur <steve(a)xemacs.org>
writes:
SL> Index: Makefile.in.in
SL> ===================================================================
SL> RCS file: /usr/CVSroot/XEmacs/xemacs/Attic/Makefile.in.in,v
SL> retrieving revision 1.1.2.4
SL> diff -u -r1.1.2.4 Makefile.in.in
SL> --- Makefile.in.in 1999/03/04 09:42:29 1.1.2.4
SL> +++ Makefile.in.in 1999/03/09 11:15:49
SL> @@ -58,6 +58,7 @@
SL> SHELL = /bin/sh
SL> LANG = C
SL> +LC_ALL = C
SL> RM = rm -f
SL> pwd = /bin/pwd
How about adding
#ifdef USE_GNU_MAKE
export LANG LC_ALL
#endif
Else you lose if the user has the environment LANG=C LC_MESSAGES=ja.
Since this only works for GNU make, you might also want to do
LANG=C
LC_ALL=C
LC_MESSAGES=C
#ifdef USE_GNU_MAKE
export LANG LC_ALL LC_MESSAGES
#endif
LC_MESSAGES is a variable likely to mess things up, since it modifies
the output of commands we might be relying on.
Martin