mirror of https://github.com/python/cpython
Fixing changes to getbuildinfo.c that broke linux builds
This commit is contained in:
parent
ff8712263d
commit
b53940f238
|
@ -20,7 +20,14 @@
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* on unix, SVNVERSION is passed on the command line.
|
||||||
|
* on Windows, the string is interpolated using
|
||||||
|
* subwcrev.exe
|
||||||
|
*/
|
||||||
|
#ifndef SVNVERSION
|
||||||
#define SVNVERSION "$WCRANGE$$WCMODS?M:$"
|
#define SVNVERSION "$WCRANGE$$WCMODS?M:$"
|
||||||
|
#endif
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
Py_GetBuildInfo(void)
|
Py_GetBuildInfo(void)
|
||||||
{
|
{
|
||||||
|
@ -39,7 +46,7 @@ _Py_svnversion(void)
|
||||||
{
|
{
|
||||||
/* the following string can be modified by subwcrev.exe */
|
/* the following string can be modified by subwcrev.exe */
|
||||||
static const char svnversion[] = SVNVERSION;
|
static const char svnversion[] = SVNVERSION;
|
||||||
if (!strstr(svnversion, "$"))
|
if (svnversion[0] != '$')
|
||||||
return svnversion; /* it was interpolated */
|
return svnversion; /* it was interpolated, or passed on command line */
|
||||||
return "exported";
|
return "exported";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue