From d6dae009824be20a46557980aec0a881af6b20f1 Mon Sep 17 00:00:00 2001 From: George Melikov Date: Tue, 31 Aug 2021 21:52:05 +0300 Subject: [PATCH] Libabigail: make .abi files more consistent Reviewed-by: John Kennedy Reviewed-by: Brian Behlendorf Signed-off-by: George Melikov Closes #12529 --- config/Abigail.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/Abigail.am b/config/Abigail.am index 599f611942..94687b90ee 100644 --- a/config/Abigail.am +++ b/config/Abigail.am @@ -25,5 +25,9 @@ checkabi: storeabi: cd .libs ; \ for lib in $(lib_LTLIBRARIES) ; do \ - abidw $${lib%.la}.so > ../$${lib%.la}.abi ; \ + abidw --no-show-locs \ + --no-corpus-path \ + --no-comp-dir-path \ + --type-id-style hash \ + $${lib%.la}.so > ../$${lib%.la}.abi ; \ done