diff options
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/msi.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index d46270c..2057beb 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -977,6 +977,8 @@ def add_files(db): launchersrc = PCBUILD if launchersrc.lower() == 'pcbuild\\x64-pgo': launchersrc = 'PCBuild\\win32-pgo' + if launchersrc.lower() == 'pcbuild\\amd64': + launchersrc = 'PCBuild' launcher = os.path.join(srcdir, launchersrc, "py.exe") launcherdir.start_component("launcher", flags = 8+256, keyfile="py.exe") launcherdir.add_file(launcher, |