Issue #17896: Move Windows external lib sources from .. to externals.

This commit is contained in:
Zachary Ware 2014-11-01 22:39:21 -05:00
parent 91f01e175a
commit 4b2b1de0bd
9 changed files with 19 additions and 12 deletions

View file

@ -68,7 +68,7 @@ def get_ssl_dir():
propfile = (os.path.join(os.path.dirname(__file__), 'pyproject.props'))
with open(propfile, encoding='utf-8-sig') as f:
m = re.search('openssl-([^<]+)<', f.read())
return "..\..\openssl-"+m.group(1)
return "..\externals\openssl-"+m.group(1)
def create_makefile64(makefile, m32):