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

Port to VS 2010.

parent 207c4b68
......@@ -65,9 +65,9 @@ def find_working_perl(perls):
# 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)
......
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