From 32162e832ee0dc2b82783ccc897f6d7c8233e1cd Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sun, 29 Aug 1999 18:22:13 +0000 Subject: [PATCH] Patch from Perry Stoll: tweaks to Windows support. --- Lib/distutils/sysconfig.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py index 5c60ca4a49..8eaf17dc35 100644 --- a/Lib/distutils/sysconfig.py +++ b/Lib/distutils/sysconfig.py @@ -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 -- 2.40.0