diff options
author | Ben Pfaff <blp@nicira.com> | 2008-07-21 15:42:31 -0700 |
---|---|---|
committer | Ben Pfaff <blp@nicira.com> | 2008-07-21 15:45:35 -0700 |
commit | 4d7977d636d52e6445bb7bbb4dd8e2b648020b6e (patch) | |
tree | 239ce9901b1f542c9892466c1528f4d4a8d35b77 /tests | |
parent | 42c25524bf6805c2e0c43e54b3ce543732306bad (diff) | |
download | openvswitch-4d7977d636d52e6445bb7bbb4dd8e2b648020b6e.tar.gz |
Don't unnecessarily link against -lresolv and -ldl.
Eliminates warnings given by dpkg-shlibdeps when building Debian
packages.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index b542c40ba..e63a2985c 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -13,5 +13,5 @@ test_type_props_SOURCES = test-type-props.c check_PROGRAMS += test-dhcp-client test_dhcp_client_SOURCES = test-dhcp-client.c -test_dhcp_client_LDADD = ../lib/libopenflow.a +test_dhcp_client_LDADD = ../lib/libopenflow.a $(FAULT_LIBS) |