diff options
author | Thomas Graf <tgraf@redhat.com> | 2011-10-26 08:54:10 (GMT) |
---|---|---|
committer | Thomas Graf <tgraf@redhat.com> | 2011-10-26 08:54:10 (GMT) |
commit | 9c7593cc9b8e891f4fdf26e12a13c71400b93254 (patch) | |
tree | c5082746e99f9e7f93ed5ae366175c79368ee963 | |
parent | 7f20c57e378cf76b68b7bf83613032a75bf832fd (diff) | |
download | libnl-9c7593cc9b8e891f4fdf26e12a13c71400b93254.zip libnl-9c7593cc9b8e891f4fdf26e12a13c71400b93254.tar.gz libnl-9c7593cc9b8e891f4fdf26e12a13c71400b93254.tar.bz2 |
python: Link against nl-3 and nl-route-3
-rw-r--r-- | python/setup.py.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/setup.py.in b/python/setup.py.in index e1a3aca..7ba90d7 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -9,14 +9,14 @@ netlink_capi = Extension('netlink/_capi', sources = ['netlink/capi.i'], include_dirs = include, swig_opts = opts, - libraries = ['nl'], + libraries = ['nl-3'], ) route_capi = Extension('netlink/route/_capi', sources = ['netlink/route/capi.i'], include_dirs = include, swig_opts = opts, - libraries = ['nl', 'nl-route'], + libraries = ['nl-3', 'nl-route-3'], ) setup(name = 'netlink', |