diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-08-17 16:07:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-17 16:07:58 (GMT) |
commit | 0b243c2f665e6784b74ac4d602d4ee429a2ad7f0 (patch) | |
tree | 5444c3a7fa1cb2d85a916f3a2773b509c4da2523 /PCbuild/regen.targets | |
parent | 4cb08188e8f0faaec303e268e12aa1d6f54017f7 (diff) | |
download | cpython-0b243c2f665e6784b74ac4d602d4ee429a2ad7f0.zip cpython-0b243c2f665e6784b74ac4d602d4ee429a2ad7f0.tar.gz cpython-0b243c2f665e6784b74ac4d602d4ee429a2ad7f0.tar.bz2 |
gh-105481: opcode.h is no longer generated during the build (#108080)
Diffstat (limited to 'PCbuild/regen.targets')
-rw-r--r-- | PCbuild/regen.targets | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/regen.targets b/PCbuild/regen.targets index ed02f91..2ff18a8 100644 --- a/PCbuild/regen.targets +++ b/PCbuild/regen.targets @@ -14,7 +14,7 @@ <Argument>-C</Argument> </_ASTOutputs> <_OpcodeSources Include="$(PySourcePath)Tools\build\generate_opcode_h.py;$(PySourcePath)Lib\opcode.py" /> - <_OpcodeOutputs Include="$(PySourcePath)Include\opcode.h;$(PySourcePath)Include\internal\pycore_opcode.h" /> + <_OpcodeOutputs Include="$(PySourcePath)Include\internal\pycore_opcode.h" /> <_TokenSources Include="$(PySourcePath)Grammar\Tokens" /> <_TokenOutputs Include="$(PySourcePath)Doc\library\token-list.inc"> <Format>rst</Format> @@ -59,7 +59,7 @@ Inputs="@(_OpcodeSources)" Outputs="@(_OpcodeOutputs)" DependsOnTargets="FindPythonForBuild"> <Message Text="Regenerate @(_OpcodeOutputs->'%(Filename)%(Extension)',' ')" Importance="high" /> - <Exec Command="$(PythonForBuild) Tools\build\generate_opcode_h.py Lib\opcode.py Include\opcode.h Include\internal\pycore_opcode.h Include\internal\pycore_intrinsics.h" + <Exec Command="$(PythonForBuild) Tools\build\generate_opcode_h.py Lib\opcode.py Include\internal\pycore_opcode.h Include\internal\pycore_intrinsics.h" WorkingDirectory="$(PySourcePath)" /> </Target> |