diff options
author | Ben Pfaff <blp@nicira.com> | 2008-07-21 14:50:36 -0700 |
---|---|---|
committer | Ben Pfaff <blp@nicira.com> | 2008-07-21 15:05:53 -0700 |
commit | 5fc6464527b11f08f1e3592e2c8eff621521d85c (patch) | |
tree | 09e3e43fe9bcca1c4a7c2ffa63aca1ebfc8b98f9 /tests | |
parent | 6e1d7e425482664ae0d4af88a36f2f7d9e0e8a6b (diff) | |
download | openvswitch-5fc6464527b11f08f1e3592e2c8eff621521d85c.tar.gz |
Don't explicitly link against libdl.
There is no need to add -ldl explicitly to each program's LDADD, because
the configure test for dladdr does that for us.
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 8c548c048..8c5bf8dc0 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.la -ldl +test_dhcp_client_LDADD = ../lib/libopenflow.la |