summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2023-05-04 17:45:56 (GMT)
committerGitHub <noreply@github.com>2023-05-04 17:45:56 (GMT)
commitf5c38382f9c40f0017cef086896a8160e313ac9e (patch)
tree0ba0c3a0362684d52b4316fa3133464abbbe17b6 /PCbuild
parentd47cddfa27cbcbeb4dddb9263976d85c41241672 (diff)
downloadcpython-f5c38382f9c40f0017cef086896a8160e313ac9e.zip
cpython-f5c38382f9c40f0017cef086896a8160e313ac9e.tar.gz
cpython-f5c38382f9c40f0017cef086896a8160e313ac9e.tar.bz2
gh-103963: fix 'make regen-opcode' in out-of-tree builds (#104177)
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/regen.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/regen.targets b/PCbuild/regen.targets
index aeb7e2e..1070668 100644
--- a/PCbuild/regen.targets
+++ b/PCbuild/regen.targets
@@ -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"
+ <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"
WorkingDirectory="$(PySourcePath)" />
<Exec Command="$(PythonForBuild) Python\makeopcodetargets.py Python\opcode_targets.h"
WorkingDirectory="$(PySourcePath)" />