mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Patch from Perry Stoll: tweaks to Windows support.
This commit is contained in:
parent
69628b0ad1
commit
32162e832e
1 changed files with 6 additions and 1 deletions
|
@ -137,8 +137,13 @@ def _init_nt():
|
|||
os.path.join(sys.exec_prefix, "include", "config.h")), g)
|
||||
# set basic install directories
|
||||
g['LIBDEST']=os.path.join(sys.exec_prefix, "Lib")
|
||||
g['BINLIBDEST']=os.path.join(sys.exec_prefix, "Lib")
|
||||
g['BINLIBDEST']= os.path.join(sys.exec_prefix, "Lib")
|
||||
|
||||
# XXX hmmm.. a normal install puts include files here
|
||||
g['INCLUDEPY'] = os.path.join (sys.prefix, 'include' )
|
||||
|
||||
g['SO'] = '.dll'
|
||||
g['exec_prefix'] = sys.exec_prefix
|
||||
|
||||
try:
|
||||
exec "_init_" + os.name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue