[Python-checkins] r52971 - python/branches/release25-maint/Makefile.pre.in

georg.brandl python-checkins at python.org
Fri Dec 8 21:46:13 CET 2006


Author: georg.brandl
Date: Fri Dec  8 21:46:13 2006
New Revision: 52971

Modified:
   python/branches/release25-maint/Makefile.pre.in
Log:
#1577756: svnversion doesn't react to LANG=C, use LC_ALL=C to force
English output.
 (backport from rev. 52970)

Modified: python/branches/release25-maint/Makefile.pre.in
==============================================================================
--- python/branches/release25-maint/Makefile.pre.in	(original)
+++ python/branches/release25-maint/Makefile.pre.in	Fri Dec  8 21:46:13 2006
@@ -455,7 +455,7 @@
 		$(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)"' \


More information about the Python-checkins mailing list