summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2023-08-17 16:07:58 (GMT)
committerGitHub <noreply@github.com>2023-08-17 16:07:58 (GMT)
commit0b243c2f665e6784b74ac4d602d4ee429a2ad7f0 (patch)
tree5444c3a7fa1cb2d85a916f3a2773b509c4da2523 /Makefile.pre.in
parent4cb08188e8f0faaec303e268e12aa1d6f54017f7 (diff)
downloadcpython-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 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index bcec078..9be5c3b 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1427,13 +1427,11 @@ regen-ast:
.PHONY: regen-opcode
regen-opcode:
- # Regenerate Include/opcode.h from Lib/opcode.py
+ # Regenerate Include/internal/pycore_opcode.h from Lib/opcode.py
# using Tools/build/generate_opcode_h.py
$(PYTHON_FOR_REGEN) $(srcdir)/Tools/build/generate_opcode_h.py \
$(srcdir)/Lib/opcode.py \
- $(srcdir)/Include/opcode.h.new \
$(srcdir)/Include/internal/pycore_opcode.h.new
- $(UPDATE_FILE) $(srcdir)/Include/opcode.h $(srcdir)/Include/opcode.h.new
$(UPDATE_FILE) $(srcdir)/Include/internal/pycore_opcode.h $(srcdir)/Include/internal/pycore_opcode.h.new
.PHONY: regen-token