Skip to content

Commit e05afef

Browse files
authored
Correct the order of check-abidump (GH-27230)
The check was backwards so we were not correctly detecting removals.
1 parent 049e98b commit e05afef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ regen-abidump: all
762762
@$(UPDATE_FILE) $(srcdir)/Doc/data/python$(LDVERSION).abi $(srcdir)/Doc/data/python$(LDVERSION).abi.new
763763

764764
check-abidump: all
765-
abidiff "libpython$(LDVERSION).so" $(srcdir)/Doc/data/python$(LDVERSION).abi --drop-private-types --no-architecture --no-added-syms
765+
abidiff $(srcdir)/Doc/data/python$(LDVERSION).abi "libpython$(LDVERSION).so" --drop-private-types --no-architecture --no-added-syms
766766

767767
############################################################################
768768
# Regenerate all generated files

0 commit comments

Comments
 (0)