Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2eb6545

Browse files
committed
Merged revisions 72871-72872 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r72871 | benjamin.peterson | 2009-05-23 14:24:37 -0500 (Sat, 23 May 2009) | 1 line support building with subversion 1.7 python#6094 ........ r72872 | benjamin.peterson | 2009-05-23 14:31:02 -0500 (Sat, 23 May 2009) | 1 line reorder name ........
1 parent f658e82 commit 2eb6545

7 files changed

Lines changed: 9 additions & 6 deletions

File tree

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

506506
Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
507507
$(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,7 @@ Andrew Svetlov
684684
Kalle Svensson
685685
Paul Swartz
686686
Thenault Sylvain
687+
Arfrever Frehtes Taifersar Arahesis
687688
Geoff Talvola
688689
William Tanksley
689690
Christian Tanzer

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ Library
9898
Build
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

Modules/getbuildinfo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

Python/sysmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
43444344
then
43454345
SVNVERSION="svnversion \$(srcdir)"
43464346
else
4347-
SVNVERSION="echo exported"
4347+
SVNVERSION="echo Unversioned directory"
43484348
fi
43494349

43504350
case $MACHDEP in

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ if test $SVNVERSION = found
767767
then
768768
SVNVERSION="svnversion \$(srcdir)"
769769
else
770-
SVNVERSION="echo exported"
770+
SVNVERSION="echo Unversioned directory"
771771
fi
772772

773773
case $MACHDEP in

0 commit comments

Comments
 (0)