Browse Source

Port to VS 2010.

pull/2332/head
Martin v. Löwis 14 years ago
parent
commit
d18c397ed6
  1. 4
      PCbuild/build_ssl.py

4
PCbuild/build_ssl.py

@ -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)

Loading…
Cancel
Save