Skip to content

Commit 0e77540

Browse files
authored
Fixed regenerating files in a checkout path with spaces (GH-121384)
1 parent d4faa7b commit 0e77540

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

PCbuild/regen.targets

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,23 +90,23 @@
9090
Inputs="@(_CasesSources)" Outputs="@(_CasesOutputs)"
9191
DependsOnTargets="FindPythonForBuild">
9292
<Message Text="Regenerate cases" Importance="high" />
93-
<Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\opcode_id_generator.py $(PySourcePath)Python\bytecodes.c"
93+
<Exec Command="$(PythonForBuild) Tools\cases_generator\opcode_id_generator.py Python\bytecodes.c"
9494
WorkingDirectory="$(PySourcePath)" />
95-
<Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\target_generator.py $(PySourcePath)Python\bytecodes.c"
95+
<Exec Command="$(PythonForBuild) Tools\cases_generator\target_generator.py Python\bytecodes.c"
9696
WorkingDirectory="$(PySourcePath)" />
97-
<Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\uop_id_generator.py $(PySourcePath)Python\bytecodes.c"
97+
<Exec Command="$(PythonForBuild) Tools\cases_generator\uop_id_generator.py Python\bytecodes.c"
9898
WorkingDirectory="$(PySourcePath)" />
99-
<Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\py_metadata_generator.py $(PySourcePath)Python\bytecodes.c"
99+
<Exec Command="$(PythonForBuild) Tools\cases_generator\py_metadata_generator.py Python\bytecodes.c"
100100
WorkingDirectory="$(PySourcePath)" />
101-
<Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\tier1_generator.py $(PySourcePath)Python\bytecodes.c"
101+
<Exec Command="$(PythonForBuild) Tools\cases_generator\tier1_generator.py Python\bytecodes.c"
102102
WorkingDirectory="$(PySourcePath)" />
103-
<Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\tier2_generator.py $(PySourcePath)Python\bytecodes.c"
103+
<Exec Command="$(PythonForBuild) Tools\cases_generator\tier2_generator.py Python\bytecodes.c"
104104
WorkingDirectory="$(PySourcePath)" />
105-
<Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\optimizer_generator.py $(PySourcePath)Python\optimizer_bytecodes.c $(PySourcePath)Python\bytecodes.c"
105+
<Exec Command="$(PythonForBuild) Tools\cases_generator\optimizer_generator.py Python\optimizer_bytecodes.c Python\bytecodes.c"
106106
WorkingDirectory="$(PySourcePath)" />
107-
<Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\opcode_metadata_generator.py $(PySourcePath)Python\bytecodes.c"
107+
<Exec Command="$(PythonForBuild) Tools\cases_generator\opcode_metadata_generator.py Python\bytecodes.c"
108108
WorkingDirectory="$(PySourcePath)" />
109-
<Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\uop_metadata_generator.py $(PySourcePath)Python\bytecodes.c"
109+
<Exec Command="$(PythonForBuild) Tools\cases_generator\uop_metadata_generator.py Python\bytecodes.c"
110110
WorkingDirectory="$(PySourcePath)" />
111111
</Target>
112112

0 commit comments

Comments
 (0)