diff options
author | Greg Ward <gward@python.net> | 1999-08-29 18:22:13 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 1999-08-29 18:22:13 (GMT) |
commit | 32162e832ee0dc2b82783ccc897f6d7c8233e1cd (patch) | |
tree | 4f0a38a3b3889b954d98eab395934acd2294e350 /Lib/distutils/sysconfig.py | |
parent | 69628b0ad10f89a65902f5b911d1040ed9ae1ca2 (diff) | |
download | cpython-32162e832ee0dc2b82783ccc897f6d7c8233e1cd.zip cpython-32162e832ee0dc2b82783ccc897f6d7c8233e1cd.tar.gz cpython-32162e832ee0dc2b82783ccc897f6d7c8233e1cd.tar.bz2 |
Patch from Perry Stoll: tweaks to Windows support.
Diffstat (limited to 'Lib/distutils/sysconfig.py')
-rw-r--r-- | Lib/distutils/sysconfig.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py index 5c60ca4..8eaf17d 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 |