From ed8f294f43d61fd8e0d5c134c566d85adeadcdfc Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 8 Dec 2006 20:46:13 +0000 Subject: [PATCH] #1577756: svnversion doesn't react to LANG=C, use LC_ALL=C to force English output. (backport from rev. 52970) --- Makefile.pre.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index ce8710e1ca..2ee077d0df 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -455,7 +455,7 @@ Modules/getbuildinfo.o: $(PARSER_OBJS) \ $(SIGNAL_OBJS) \ $(MODOBJS) \ $(srcdir)/Modules/getbuildinfo.c - $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LANG=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c + $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \ -- 2.50.1