From: Greg Ward Date: Sun, 29 Aug 1999 18:22:13 +0000 (+0000) Subject: Patch from Perry Stoll: tweaks to Windows support. X-Git-Tag: v1.6a1~955 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=32162e832ee0dc2b82783ccc897f6d7c8233e1cd;p=thirdparty%2FPython%2Fcpython.git Patch from Perry Stoll: tweaks to Windows support. --- diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py index 5c60ca4a4919..8eaf17dc3564 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