storeabi: add `no-corpus-path` flag

Try to minimize diffs.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: George Melikov <mail@gmelikov.ru>
Closes #12388
This commit is contained in:
George Melikov 2021-07-18 17:37:36 +03:00 committed by Brian Behlendorf
parent 273730d5b5
commit 0b072481af
1 changed files with 3 additions and 1 deletions

View File

@ -25,5 +25,7 @@ checkabi:
storeabi:
cd .libs ; \
for lib in $(lib_LTLIBRARIES) ; do \
abidw --no-show-locs $${lib%.la}.so > ../$${lib%.la}.abi ; \
abidw --no-show-locs \
--no-corpus-path \
$${lib%.la}.so > ../$${lib%.la}.abi ; \
done