mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Build and bundle the 32-bit launcher in all configurations.
This commit is contained in:
parent
af21ebb424
commit
8559b3cecf
2 changed files with 11 additions and 10 deletions
|
@ -973,12 +973,13 @@ def add_files(db):
|
|||
# to allow setting the SharedDLLs key in the 64-bit portion even for a
|
||||
# 32-bit installer.
|
||||
# XXX does this still allow to install the component on a 32-bit system?
|
||||
launcher = os.path.join(srcdir, PCBUILD, "py.exe")
|
||||
# Pick up 32-bit binary always
|
||||
launcher = os.path.join(srcdir, "PCBuild", "py.exe")
|
||||
launcherdir.start_component("launcher", flags = 8+256, keyfile="py.exe")
|
||||
launcherdir.add_file("%s/py.exe" % PCBUILD,
|
||||
version=installer.FileVersion(launcher, 0),
|
||||
language=installer.FileVersion(launcher, 1))
|
||||
launcherw = os.path.join(srcdir, PCBUILD, "pyw.exe")
|
||||
launcherw = os.path.join(srcdir, "PCBuild", "pyw.exe")
|
||||
launcherdir.start_component("launcherw", flags = 8+256, keyfile="pyw.exe")
|
||||
launcherdir.add_file("%s/pyw.exe" % PCBUILD,
|
||||
version=installer.FileVersion(launcherw, 0),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue