Patch from Perry Stoll: tweaks to Windows support.

This commit is contained in:
Greg Ward 1999-08-29 18:22:13 +00:00
parent 69628b0ad1
commit 32162e832e
1 changed files with 6 additions and 1 deletions

View File

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