summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAraHaan <seandhunt_7@yahoo.com>2024-07-05 16:33:52 (GMT)
committerGitHub <noreply@github.com>2024-07-05 16:33:52 (GMT)
commit0e77540d86833f0a0ef964ab51f35be9bfb533f9 (patch)
tree425c9631db1580350a3565769560f287ad6048d7
parentd4faa7bd321a7016f3e987d65962e02c778d708f (diff)
downloadcpython-0e77540d86833f0a0ef964ab51f35be9bfb533f9.zip
cpython-0e77540d86833f0a0ef964ab51f35be9bfb533f9.tar.gz
cpython-0e77540d86833f0a0ef964ab51f35be9bfb533f9.tar.bz2
Fixed regenerating files in a checkout path with spaces (GH-121384)
-rw-r--r--PCbuild/regen.targets18
1 files changed, 9 insertions, 9 deletions
diff --git a/PCbuild/regen.targets b/PCbuild/regen.targets
index 4aa14ed..416241d 100644
--- a/PCbuild/regen.targets
+++ b/PCbuild/regen.targets
@@ -90,23 +90,23 @@
Inputs="@(_CasesSources)" Outputs="@(_CasesOutputs)"
DependsOnTargets="FindPythonForBuild">
<Message Text="Regenerate cases" Importance="high" />
- <Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\opcode_id_generator.py $(PySourcePath)Python\bytecodes.c"
+ <Exec Command="$(PythonForBuild) Tools\cases_generator\opcode_id_generator.py Python\bytecodes.c"
WorkingDirectory="$(PySourcePath)" />
- <Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\target_generator.py $(PySourcePath)Python\bytecodes.c"
+ <Exec Command="$(PythonForBuild) Tools\cases_generator\target_generator.py Python\bytecodes.c"
WorkingDirectory="$(PySourcePath)" />
- <Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\uop_id_generator.py $(PySourcePath)Python\bytecodes.c"
+ <Exec Command="$(PythonForBuild) Tools\cases_generator\uop_id_generator.py Python\bytecodes.c"
WorkingDirectory="$(PySourcePath)" />
- <Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\py_metadata_generator.py $(PySourcePath)Python\bytecodes.c"
+ <Exec Command="$(PythonForBuild) Tools\cases_generator\py_metadata_generator.py Python\bytecodes.c"
WorkingDirectory="$(PySourcePath)" />
- <Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\tier1_generator.py $(PySourcePath)Python\bytecodes.c"
+ <Exec Command="$(PythonForBuild) Tools\cases_generator\tier1_generator.py Python\bytecodes.c"
WorkingDirectory="$(PySourcePath)" />
- <Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\tier2_generator.py $(PySourcePath)Python\bytecodes.c"
+ <Exec Command="$(PythonForBuild) Tools\cases_generator\tier2_generator.py Python\bytecodes.c"
WorkingDirectory="$(PySourcePath)" />
- <Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\optimizer_generator.py $(PySourcePath)Python\optimizer_bytecodes.c $(PySourcePath)Python\bytecodes.c"
+ <Exec Command="$(PythonForBuild) Tools\cases_generator\optimizer_generator.py Python\optimizer_bytecodes.c Python\bytecodes.c"
WorkingDirectory="$(PySourcePath)" />
- <Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\opcode_metadata_generator.py $(PySourcePath)Python\bytecodes.c"
+ <Exec Command="$(PythonForBuild) Tools\cases_generator\opcode_metadata_generator.py Python\bytecodes.c"
WorkingDirectory="$(PySourcePath)" />
- <Exec Command="$(PythonForBuild) $(PySourcePath)Tools\cases_generator\uop_metadata_generator.py $(PySourcePath)Python\bytecodes.c"
+ <Exec Command="$(PythonForBuild) Tools\cases_generator\uop_metadata_generator.py Python\bytecodes.c"
WorkingDirectory="$(PySourcePath)" />
</Target>