summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'extensions')
-rw-r--r--extensions/GNUmakefile.in11
1 files changed, 10 insertions, 1 deletions
diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in
index 107c9d59..a9edb1e6 100644
--- a/extensions/GNUmakefile.in
+++ b/extensions/GNUmakefile.in
@@ -68,7 +68,16 @@ targets_install :=
.PHONY: all install clean distclean FORCE
-all: ${targets}
+all: ${targets} check
+
+check: ${targets}
+ @echo " CHECK unknown symbols in .so files"; \
+ . ../iptables/libxtables.la; \
+ for i in "" lib*.so; do \
+ [ -z "$$i" ] && continue; \
+ LD_PRELOAD="$$dlname" LD_LIBRARY_PATH=../iptables/.libs \
+ ldd -r $$i 2>&1 >/dev/null; \
+ done;
install: ${targets_install}
@mkdir -p "${DESTDIR}${xtlibdir}";