diff options
author | Damian Szuberski <[email protected]> | 2022-02-16 20:48:01 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-16 11:48:01 -0800 |
commit | ba6005175eee22ec7fb9f4226690f70ce35a45ae (patch) | |
tree | ef5e9e8536856e7e503555c08b1040e0d5de8b62 /Makefile.am | |
parent | 0df22afea22f5ed59be1e36d4b716eb832a319fd (diff) |
`checkabi`/`storeabi` relevant only to x86_64
The stored ABI files are for the x86_64 architecture.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: szubersk <[email protected]>
Closes #11345
Closes #13104
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am index c8d1d08aa..42330440a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -138,20 +138,10 @@ SHELLCHECKSCRIPTS = autogen.sh PHONY += checkabi storeabi -checklibabiversion: - libabiversion=`abidw -v | $(SED) 's/[^0-9]//g'`; \ - if test $$libabiversion -lt "200"; then \ - /bin/echo -e "\n" \ - "*** Please use libabigail 2.0.0 version or newer;\n" \ - "*** otherwise results are not consistent!\n" \ - "(or see https://github.com/openzfs/libabigail-docker )\n"; \ - exit 1; \ - fi; - -checkabi: checklibabiversion lib +checkabi: lib $(MAKE) -C lib checkabi -storeabi: checklibabiversion lib +storeabi: lib $(MAKE) -C lib storeabi PHONY += mancheck |