diff options
author | Barry Warsaw <barry@python.org> | 1997-06-13 22:03:23 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1997-06-13 22:03:23 (GMT) |
commit | 3b1c89e244e1b7dabaa6a3f2e5e939da29b0d2a1 (patch) | |
tree | c2213e516b37e1658055b027503a7f9b88d38077 /Modules/Setup.in | |
parent | bcdb9403d44a30c5a55c7ccbaebbbb26ff6a0b87 (diff) | |
download | cpython-3b1c89e244e1b7dabaa6a3f2e5e939da29b0d2a1.zip cpython-3b1c89e244e1b7dabaa6a3f2e5e939da29b0d2a1.tar.gz cpython-3b1c89e244e1b7dabaa6a3f2e5e939da29b0d2a1.tar.bz2 |
MACDEPPATH: Remove `sharedmodules' from default value of this variable
since calculate_path() in getpath.c will automatically add this.
Including this here will put the sharedmodules directory on sys.path
twice.
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 9c9a0dd..b2214cf 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -80,7 +80,7 @@ SITEPATH= TESTPATH=:test # Path components for machine- or system-dependent modules and shared libraries -MACHDEPPATH=:$(MACHDEP):sharedmodules +MACHDEPPATH=:$(MACHDEP) COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH) PYTHONPATH=$(COREPYTHONPATH) |