Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Feb 12, 2019
1 parent 3aefeb2 commit 8ac7cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@

extra_sources = ['scrypt-windows-stubs/gettimeofday.c']
if struct.calcsize('P') == 8:
if os.path.isdir('c:\OpenSSL-Win64') and sys.version_info[0] > 3 and sys.version_info[1] > 4:
if os.path.isdir('c:\OpenSSL-v111-Win64') and sys.version_info[0] > 3 and sys.version_info[1] > 4:
openssl_dir = 'c:\OpenSSL-v111-Win64'
else:
openssl_dir = 'c:\OpenSSL-Win64'
library_dirs = [openssl_dir + '\lib']
includes = [openssl_dir + '\include', 'scrypt-windows-stubs/include']
else:
if os.path.isdir('c:\OpenSSL-Win32'):
if os.path.isdir('c:\OpenSSL-v111-Win32'):
openssl_dir = 'c:\OpenSSL-v111-Win32'
else:
openssl_dir = 'c:\OpenSSL-Win32'
Expand Down

0 comments on commit 8ac7cd8

Please sign in to comment.