From: Martin v. Löwis Date: Mon, 27 Mar 2006 16:30:41 +0000 (+0000) Subject: Allow supression of subwcrev.exe invocation on a per-working-copy basis. X-Git-Tag: v2.5a0~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a4e98bf136b384aeea7c30c4ed997953b90fb11;p=thirdparty%2FPython%2Fcpython.git Allow supression of subwcrev.exe invocation on a per-working-copy basis. --- diff --git a/PCbuild/make_buildinfo.c b/PCbuild/make_buildinfo.c index 9d2f9f0612a9..4cebf45ccd84 100644 --- a/PCbuild/make_buildinfo.c +++ b/PCbuild/make_buildinfo.c @@ -27,6 +27,9 @@ int make_buildinfo2() DWORD type, size; if (_stat(".svn", &st) < 0) return 0; + /* Allow suppression of subwcrev.exe invocation if a no_subwcrev file is present. */ + if (_stat("no_subwcrev", &st) == 0) + return 0; if (RegOpenKey(HKEY_LOCAL_MACHINE, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS && RegOpenKey(HKEY_CURRENT_USER, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS) /* Tortoise not installed */