summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2011-09-18 15:06:05 +0200
committerJan Engelhardt <jengelh@medozas.de>2011-09-19 13:42:32 +0200
commit8816e91cddef785c78b3598c7c41a1f88be08f5a (patch)
treed15e6d27f9c39c1d9a4004c40803bb67ccb72a9c /extensions
parent1e4965232d77ab752c9c781afcf854f4b173c7b1 (diff)
build: restore build order of modules
iptables(exe) requires libext.a, but extensions/ require libxtables.la (in iptables/). This circular dependency does not work out, so separate libxtables into its own directory and put it in front. Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/GNUmakefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in
index 60f28c0c..221c2c91 100644
--- a/extensions/GNUmakefile.in
+++ b/extensions/GNUmakefile.in
@@ -72,10 +72,10 @@ all: ${targets} check
check: ${targets}
@echo " CHECK unknown symbols in .so files"; \
- . ../iptables/libxtables.la; \
+ . ../libxtables/libxtables.la; \
for i in "" lib*.so; do \
[ -z "$$i" ] && continue; \
- LD_PRELOAD="$$dlname" LD_LIBRARY_PATH=../iptables/.libs \
+ LD_PRELOAD="$$dlname" LD_LIBRARY_PATH=../libxtables/.libs \
ldd -r $$i 2>&1 >/dev/null; \
done;