]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
build: make check stage not fail when building statically
authorJan Engelhardt <jengelh@medozas.de>
Sun, 18 Sep 2011 13:38:20 +0000 (15:38 +0200)
committerJan Engelhardt <jengelh@medozas.de>
Mon, 19 Sep 2011 11:42:35 +0000 (13:42 +0200)
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
extensions/GNUmakefile.in

index 221c2c91eb54b59bcef357b063b4e358635d6cea..b088684e7cfc86bbb5561bb0329a28417085ed54 100644 (file)
@@ -73,8 +73,8 @@ all: ${targets} check
 check: ${targets}
        @echo "  CHECK    unknown symbols in .so files"; \
        . ../libxtables/libxtables.la; \
-       for i in "" lib*.so; do \
-               [ -z "$$i" ] && continue; \
+       for i in lib*.so; do \
+               [ "$$i" = "lib*.so" ] && continue; \
                LD_PRELOAD="$$dlname" LD_LIBRARY_PATH=../libxtables/.libs \
                        ldd -r $$i 2>&1 >/dev/null; \
        done;