From: Jan Engelhardt Date: Sun, 18 Sep 2011 13:38:20 +0000 (+0200) Subject: build: make check stage not fail when building statically X-Git-Tag: v1.4.12.2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2b0eaa297dfa87f54b3fbcaa292f14d793e3f3c;p=thirdparty%2Fiptables.git build: make check stage not fail when building statically Signed-off-by: Jan Engelhardt --- diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in index 221c2c91..b088684e 100644 --- a/extensions/GNUmakefile.in +++ b/extensions/GNUmakefile.in @@ -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;