File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -501,7 +501,7 @@ Modules/getbuildinfo.o: $(PARSER_OBJS) \
501501 $(SIGNAL_OBJS) \
502502 $(MODOBJS) \
503503 $(srcdir)/Modules/getbuildinfo.c
504- $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
504+ $(CC) -c $(PY_CFLAGS) -DSVNVERSION=" \"`LC_ALL=C $(SVNVERSION)`\" " -o $@ $(srcdir)/Modules/getbuildinfo.c
505505
506506Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
507507 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
Original file line number Diff line number Diff line change @@ -684,6 +684,7 @@ Andrew Svetlov
684684Kalle Svensson
685685Paul Swartz
686686Thenault Sylvain
687+ Arfrever Frehtes Taifersar Arahesis
687688Geoff Talvola
688689William Tanksley
689690Christian Tanzer
Original file line number Diff line number Diff line change @@ -98,6 +98,8 @@ Library
9898Build
9999-----
100100
101+ - Issue #6094: Build correctly with Subversion 1.7.
102+
101103- Issue #5726: Make Modules/ld_so_aix return the actual exit code of the
102104 linker, rather than always exit successfully. Patch by Floris Bruynooghe.
103105
Original file line number Diff line number Diff line change @@ -48,5 +48,5 @@ _Py_svnversion(void)
4848 static const char svnversion [] = SVNVERSION ;
4949 if (svnversion [0 ] != '$' )
5050 return svnversion ; /* it was interpolated, or passed on command line */
51- return "exported " ;
51+ return "Unversioned directory " ;
5252}
Original file line number Diff line number Diff line change @@ -1161,7 +1161,7 @@ svnversion_init(void)
11611161
11621162
11631163 svnversion = _Py_svnversion ();
1164- if (strcmp (svnversion , "exported" ) != 0 )
1164+ if (strcmp (svnversion , "Unversioned directory" ) != 0 && strcmp ( svnversion , " exported" ) != 0 )
11651165 svn_revision = svnversion ;
11661166 else if (istag ) {
11671167 len = strlen (_patchlevel_revision );
Original file line number Diff line number Diff line change 11#! /bin/sh
2- # From configure.in Revision: 70731 .
2+ # From configure.in Revision: 72275 .
33# Guess values for system-dependent variables and create Makefiles.
44# Generated by GNU Autoconf 2.61 for python 2.6.
55#
@@ -4344,7 +4344,7 @@ if test $SVNVERSION = found
43444344then
43454345 SVNVERSION="svnversion \$(srcdir)"
43464346else
4347- SVNVERSION="echo exported "
4347+ SVNVERSION="echo Unversioned directory "
43484348fi
43494349
43504350case $MACHDEP in
Original file line number Diff line number Diff line change @@ -767,7 +767,7 @@ if test $SVNVERSION = found
767767then
768768 SVNVERSION="svnversion \$(srcdir)"
769769else
770- SVNVERSION="echo exported "
770+ SVNVERSION="echo Unversioned directory "
771771fi
772772
773773case $MACHDEP in
You can’t perform that action at this time.
0 commit comments