From e05afef3c6182f4b81f0eabc06b361487fbd58cb Mon Sep 17 00:00:00 2001 From: Pablo Galindo Salgado Date: Sun, 18 Jul 2021 16:53:14 +0100 Subject: [PATCH] Correct the order of check-abidump (GH-27230) The check was backwards so we were not correctly detecting removals. --- Makefile.pre.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index 2b6857103188..6ce7a614dce2 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -762,7 +762,7 @@ regen-abidump: all @$(UPDATE_FILE) $(srcdir)/Doc/data/python$(LDVERSION).abi $(srcdir)/Doc/data/python$(LDVERSION).abi.new check-abidump: all - abidiff "libpython$(LDVERSION).so" $(srcdir)/Doc/data/python$(LDVERSION).abi --drop-private-types --no-architecture --no-added-syms + abidiff $(srcdir)/Doc/data/python$(LDVERSION).abi "libpython$(LDVERSION).so" --drop-private-types --no-architecture --no-added-syms ############################################################################ # Regenerate all generated files -- 2.47.3