make libcheck now also prints the name(s) of the

`illegal' functions.
Henning Meier-Geinitz <henning@meier-geinitz.de>
DEVEL_2_0_BRANCH-1
Henning Geinitz 2001-09-05 19:59:25 +00:00
rodzic 5bf1620e3f
commit bbb767c084
1 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -71,11 +71,12 @@ sort-cvsignore:
# the libraries
#
libcheck:
echo "Libraries exporting 'illegal' symbols:"
@echo "Libraries exporting 'illegal' symbols:"
@for lib in backend/.libs/*.a; do \
if nm -g $$lib|grep ' T '|egrep -v ' sane_| sanei_' > /dev/null; \
lines=`nm -g $$lib|grep ' T '|egrep -v ' sane_| sanei_'` ; \
if test -n "$$lines" ; \
then \
echo " $$lib"; \
echo -e "*** $$lib:\n$$lines"; \
fi \
done