diff options
author | Petr Viktorin <encukou@gmail.com> | 2022-04-29 14:18:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-29 14:18:08 (GMT) |
commit | 83bce8ef14ee5546cb3d60f398f0cbb04bd3d9df (patch) | |
tree | af3c0eaba50e7a3bb15824ee7b1d08178e186247 /Makefile.pre.in | |
parent | 89c6b2b8f615a1c1827a92c4582c213b1a5027fb (diff) | |
download | cpython-83bce8ef14ee5546cb3d60f398f0cbb04bd3d9df.zip cpython-83bce8ef14ee5546cb3d60f398f0cbb04bd3d9df.tar.gz cpython-83bce8ef14ee5546cb3d60f398f0cbb04bd3d9df.tar.bz2 |
gh-91324: Convert the stable ABI manifest to TOML (GH-92026)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index c12305a..e45d4fe 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1199,7 +1199,7 @@ regen-global-objects: $(srcdir)/Tools/scripts/generate_global_objects.py # ABI regen-limited-abi: all - $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/stable_abi.py --generate-all $(srcdir)/Misc/stable_abi.txt + $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/stable_abi.py --generate-all $(srcdir)/Misc/stable_abi.toml ############################################################################ # Regenerate all generated files @@ -2476,7 +2476,7 @@ patchcheck: @DEF_MAKE_RULE@ $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py check-limited-abi: all - $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/stable_abi.py --all $(srcdir)/Misc/stable_abi.txt + $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/stable_abi.py --all $(srcdir)/Misc/stable_abi.toml .PHONY: update-config update-config: |