diff options
author | Thomas Graf <tgr@plip.localdomain> | 2008-08-18 23:35:01 (GMT) |
---|---|---|
committer | Thomas Graf <tgr@plip.localdomain> | 2008-08-18 23:35:01 (GMT) |
commit | b310cbb7b6d1f48411d3ee72b48b7103ee2267eb (patch) | |
tree | 1d35cff565c47cc8bee3f951c9f59c0eb083c807 | |
parent | 13ab2441ced84cfc093734b257c43fa468cb22fd (diff) | |
download | libnl-b310cbb7b6d1f48411d3ee72b48b7103ee2267eb.zip libnl-b310cbb7b6d1f48411d3ee72b48b7103ee2267eb.tar.gz libnl-b310cbb7b6d1f48411d3ee72b48b7103ee2267eb.tar.bz2 |
Explicitely link to nl-route when linking nf apps.
ld won't resolve its own deps in -L../lib/ for some
reason.
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 55ee339..827754e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -48,7 +48,7 @@ genl-%: genl-%.c nf-%: nf-%.c @echo " LD $@"; \ - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -lnl-nf + $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -lnl-nf -lnl-route clean: @echo " CLEAN src"; \ |