diff options
author | Georg Brandl <georg@python.org> | 2008-05-17 19:15:58 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-17 19:15:58 (GMT) |
commit | 6e47a33e49f01c06d616a05331ea6493f33b3988 (patch) | |
tree | b0f8e76251cc46903e108dedd58314a913a6e047 /Tools | |
parent | 2e08136b3c1bc24794d08f1cb2929c5621bf3d3f (diff) | |
download | cpython-6e47a33e49f01c06d616a05331ea6493f33b3988.zip cpython-6e47a33e49f01c06d616a05331ea6493f33b3988.tar.gz cpython-6e47a33e49f01c06d616a05331ea6493f33b3988.tar.bz2 |
Tkinter, step 5: remove lib-tk subdirectory and update all places where it was mentioned.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index a57224a..f951256 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -910,14 +910,14 @@ def add_files(db): print("WARNING: _ctypes.pyd not found, ctypes will not be included") extensions.remove("_ctypes.pyd") - # Add all .py files in Lib, except lib-tk, test + # Add all .py files in Lib, except tkinter, test dirs={} pydirs = [(root,"Lib")] while pydirs: parent, dir = pydirs.pop() if dir == ".svn" or dir.startswith("plat-"): continue - elif dir in ["lib-tk", "idlelib", "Icons"]: + elif dir in ["tkinter", "idlelib", "Icons"]: if not have_tcl: continue tcltk.set_current() @@ -1186,7 +1186,7 @@ def add_registry(db): ("InstallGroup", -1, prefix+r"\InstallPath\InstallGroup", "", "Python %s" % short_version, "REGISTRY"), ("PythonPath", -1, prefix+r"\PythonPath", "", - r"[TARGETDIR]Lib;[TARGETDIR]DLLs;[TARGETDIR]Lib\lib-tk", "REGISTRY"), + r"[TARGETDIR]Lib;[TARGETDIR]DLLs", "REGISTRY"), ("Documentation", -1, prefix+r"\Help\Main Python Documentation", "", "[TARGETDIR]Doc\\"+docfile , "REGISTRY.doc"), ("Modules", -1, prefix+r"\Modules", "+", None, "REGISTRY"), |