diff options
author | Georg Brandl <georg@python.org> | 2006-12-08 20:46:13 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-12-08 20:46:13 (GMT) |
commit | ed8f294f43d61fd8e0d5c134c566d85adeadcdfc (patch) | |
tree | 2f5ad3cfab46ffbc11630c98ea7b57a1cc3e745d | |
parent | db386544ed7b3c941a4c163d34c95c15f38db744 (diff) | |
download | cpython-ed8f294f43d61fd8e0d5c134c566d85adeadcdfc.zip cpython-ed8f294f43d61fd8e0d5c134c566d85adeadcdfc.tar.gz cpython-ed8f294f43d61fd8e0d5c134c566d85adeadcdfc.tar.bz2 |
#1577756: svnversion doesn't react to LANG=C, use LC_ALL=C to force
English output.
(backport from rev. 52970)
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index ce8710e..2ee077d 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)"' \ |