Commit ce5d0e22 authored by Martin v. Löwis's avatar Martin v. Löwis

Set subversion version identification to empty strings if this is not a subversion

checkout (but a mercurial one). Closes #11579. Closes #11421.
Patch by Senthil Kumaran.
parent 197f7f68
......@@ -978,8 +978,13 @@ svnversion_init(void)
return;
python = strstr(headurl, "/python/");
if (!python)
Py_FatalError("subversion keywords missing");
if (!python) {
*patchlevel_revision = '\0';
strcpy(branch, "");
strcpy(shortbranch, "unknown");
svn_revision = "";
return;
}
br_start = python + 8;
br_end = strchr(br_start, '/');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment