[Python-checkins] cpython: Port to VS 2010.

martin.v.loewis python-checkins at python.org
Fri May 18 14:25:57 CEST 2012


http://hg.python.org/cpython/rev/b46b7da9f5fa
changeset:   77025:b46b7da9f5fa
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Fri May 18 14:20:04 2012 +0200
summary:
  Port to VS 2010.

files:
  PCbuild/build_ssl.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py
--- a/PCbuild/build_ssl.py
+++ b/PCbuild/build_ssl.py
@@ -65,9 +65,9 @@
 
 # Fetch SSL directory from VC properties
 def get_ssl_dir():
-    propfile = (os.path.join(os.path.dirname(__file__), 'pyproject.vsprops'))
+    propfile = (os.path.join(os.path.dirname(__file__), 'pyproject.props'))
     with open(propfile) as f:
-        m = re.search('openssl-([^"]+)"', f.read())
+        m = re.search('openssl-([^<]+)<', f.read())
         return "..\..\openssl-"+m.group(1)
 
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list