diff options
author | Bernhard Reutner-Fischer | 2007-05-15 09:33:32 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2007-05-15 09:33:32 +0000 |
commit | c2b3e370d6b98ef37d48582d55b26794ac2bf63f (patch) | |
tree | 4d8d0e3c7ae419d66fe820170c97f41311d803db /networking/libiproute/Kbuild | |
parent | 64332bf857b197f1dbf20f326a52be7dd0a6a80b (diff) | |
download | busybox-c2b3e370d6b98ef37d48582d55b26794ac2bf63f.zip busybox-c2b3e370d6b98ef37d48582d55b26794ac2bf63f.tar.gz |
- apply hunk that fixes an issue with (wrong?) dependencies. Initial notes were:
There is something wrong in the new buildsys: If one selects ip and has e.g.
rule or route unset, ip still wants to build those.
This fails (correctly) since rtnl_rttable_n2a and rtnl_rtrealm_n2a aren't
available if they were turned off. TODO: Talk to vda about this
Diffstat (limited to 'networking/libiproute/Kbuild')
-rw-r--r-- | networking/libiproute/Kbuild | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/networking/libiproute/Kbuild b/networking/libiproute/Kbuild index 8383630..95d37e8 100644 --- a/networking/libiproute/Kbuild +++ b/networking/libiproute/Kbuild @@ -8,11 +8,6 @@ lib-y:= lib-$(CONFIG_IP) += \ ip_parse_common_args.o \ - ipaddress.o \ - iplink.o \ - iproute.o \ - iptunnel.o \ - iprule.o \ libnetlink.o \ ll_addr.o \ ll_map.o \ @@ -22,7 +17,7 @@ lib-$(CONFIG_IP) += \ rtm_map.o \ utils.o -lib-$(CONFIG_IPADDR) += \ +lib-$(CONFIG_FEATURE_IP_ADDRESS) += \ ip_parse_common_args.o \ ipaddress.o \ libnetlink.o \ @@ -32,7 +27,7 @@ lib-$(CONFIG_IPADDR) += \ rt_names.o \ utils.o -lib-$(CONFIG_IPLINK) += \ +lib-$(CONFIG_FEATURE_IP_LINK) += \ ip_parse_common_args.o \ ipaddress.o \ iplink.o \ @@ -43,7 +38,7 @@ lib-$(CONFIG_IPLINK) += \ rt_names.o \ utils.o -lib-$(CONFIG_IPROUTE) += \ +lib-$(CONFIG_FEATURE_IP_ROUTE) += \ ip_parse_common_args.o \ iproute.o \ libnetlink.o \ @@ -52,13 +47,13 @@ lib-$(CONFIG_IPROUTE) += \ rtm_map.o \ utils.o -lib-$(CONFIG_IPTUNNEL) += \ +lib-$(CONFIG_FEATURE_IP_TUNNEL) += \ ip_parse_common_args.o \ iptunnel.o \ rt_names.o \ utils.o -lib-$(CONFIG_IPRULE) += \ +lib-$(CONFIG_FEATURE_IP_RULE) += \ ip_parse_common_args.o \ iprule.o \ rt_names.o \ |