Commit 77cc86f8 authored by Martin v. Löwis's avatar Martin v. Löwis

Ajdust path to launcher for non-PGO-builds

parent d3123416
...@@ -977,6 +977,8 @@ def add_files(db): ...@@ -977,6 +977,8 @@ def add_files(db):
launchersrc = PCBUILD launchersrc = PCBUILD
if launchersrc.lower() == 'pcbuild\\x64-pgo': if launchersrc.lower() == 'pcbuild\\x64-pgo':
launchersrc = 'PCBuild\\win32-pgo' launchersrc = 'PCBuild\\win32-pgo'
if launchersrc.lower() == 'pcbuild\\amd64':
launchersrc = 'PCBuild'
launcher = os.path.join(srcdir, launchersrc, "py.exe") launcher = os.path.join(srcdir, launchersrc, "py.exe")
launcherdir.start_component("launcher", flags = 8+256, keyfile="py.exe") launcherdir.start_component("launcher", flags = 8+256, keyfile="py.exe")
launcherdir.add_file(launcher, launcherdir.add_file(launcher,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment