diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2011-09-18 15:38:20 +0200 |
---|---|---|
committer | Jan Engelhardt <jengelh@medozas.de> | 2011-09-19 13:42:35 +0200 |
commit | d2b0eaa297dfa87f54b3fbcaa292f14d793e3f3c (patch) | |
tree | 7be0074b242ce02c343a3a881ed7584f84a37496 /extensions | |
parent | 8816e91cddef785c78b3598c7c41a1f88be08f5a (diff) |
build: make check stage not fail when building statically
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/GNUmakefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
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; |