From: Pablo Galindo Salgado Date: Sun, 18 Jul 2021 15:53:14 +0000 (+0100) Subject: Correct the order of check-abidump (GH-27230) X-Git-Tag: v3.9.7~148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e05afef3c6182f4b81f0eabc06b361487fbd58cb;p=thirdparty%2FPython%2Fcpython.git Correct the order of check-abidump (GH-27230) The check was backwards so we were not correctly detecting removals. --- 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