We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aef8a72 commit 004e7d3Copy full SHA for 004e7d3
Makefile.am
@@ -129,10 +129,20 @@ SHELLCHECKDIRS = cmd contrib etc scripts tests
129
SHELLCHECKSCRIPTS = autogen.sh
130
131
PHONY += checkabi storeabi
132
-checkabi: lib
+
133
+checklibabiversion:
134
+ libabiversion=`abidw -v | $(SED) 's/[^0-9]//g'`; \
135
+ if test $$libabiversion -lt "180"; then \
136
+ /bin/echo -e "\n" \
137
+ "*** Please use libabigail 1.8.0 version or newer;\n" \
138
+ "*** otherwise results are not consistent!\n"; \
139
+ exit 1; \
140
+ fi;
141
142
+checkabi: checklibabiversion lib
143
$(MAKE) -C lib checkabi
144
-storeabi: lib
145
+storeabi: checklibabiversion lib
146
$(MAKE) -C lib storeabi
147
148
PHONY += mancheck
0 commit comments