summaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-05-15 09:33:32 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-05-15 09:33:32 +0000
commitc2b3e370d6b98ef37d48582d55b26794ac2bf63f (patch)
tree4d8d0e3c7ae419d66fe820170c97f41311d803db /networking
parent64332bf857b197f1dbf20f326a52be7dd0a6a80b (diff)
downloadbusybox-w32-c2b3e370d6b98ef37d48582d55b26794ac2bf63f.tar.gz
busybox-w32-c2b3e370d6b98ef37d48582d55b26794ac2bf63f.tar.bz2
busybox-w32-c2b3e370d6b98ef37d48582d55b26794ac2bf63f.zip
- 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')
-rw-r--r--networking/libiproute/Kbuild15
1 files changed, 5 insertions, 10 deletions
diff --git a/networking/libiproute/Kbuild b/networking/libiproute/Kbuild
index 8383630f2..95d37e8e7 100644
--- a/networking/libiproute/Kbuild
+++ b/networking/libiproute/Kbuild
@@ -8,11 +8,6 @@
8lib-y:= 8lib-y:=
9lib-$(CONFIG_IP) += \ 9lib-$(CONFIG_IP) += \
10 ip_parse_common_args.o \ 10 ip_parse_common_args.o \
11 ipaddress.o \
12 iplink.o \
13 iproute.o \
14 iptunnel.o \
15 iprule.o \
16 libnetlink.o \ 11 libnetlink.o \
17 ll_addr.o \ 12 ll_addr.o \
18 ll_map.o \ 13 ll_map.o \
@@ -22,7 +17,7 @@ lib-$(CONFIG_IP) += \
22 rtm_map.o \ 17 rtm_map.o \
23 utils.o 18 utils.o
24 19
25lib-$(CONFIG_IPADDR) += \ 20lib-$(CONFIG_FEATURE_IP_ADDRESS) += \
26 ip_parse_common_args.o \ 21 ip_parse_common_args.o \
27 ipaddress.o \ 22 ipaddress.o \
28 libnetlink.o \ 23 libnetlink.o \
@@ -32,7 +27,7 @@ lib-$(CONFIG_IPADDR) += \
32 rt_names.o \ 27 rt_names.o \
33 utils.o 28 utils.o
34 29
35lib-$(CONFIG_IPLINK) += \ 30lib-$(CONFIG_FEATURE_IP_LINK) += \
36 ip_parse_common_args.o \ 31 ip_parse_common_args.o \
37 ipaddress.o \ 32 ipaddress.o \
38 iplink.o \ 33 iplink.o \
@@ -43,7 +38,7 @@ lib-$(CONFIG_IPLINK) += \
43 rt_names.o \ 38 rt_names.o \
44 utils.o 39 utils.o
45 40
46lib-$(CONFIG_IPROUTE) += \ 41lib-$(CONFIG_FEATURE_IP_ROUTE) += \
47 ip_parse_common_args.o \ 42 ip_parse_common_args.o \
48 iproute.o \ 43 iproute.o \
49 libnetlink.o \ 44 libnetlink.o \
@@ -52,13 +47,13 @@ lib-$(CONFIG_IPROUTE) += \
52 rtm_map.o \ 47 rtm_map.o \
53 utils.o 48 utils.o
54 49
55lib-$(CONFIG_IPTUNNEL) += \ 50lib-$(CONFIG_FEATURE_IP_TUNNEL) += \
56 ip_parse_common_args.o \ 51 ip_parse_common_args.o \
57 iptunnel.o \ 52 iptunnel.o \
58 rt_names.o \ 53 rt_names.o \
59 utils.o 54 utils.o
60 55
61lib-$(CONFIG_IPRULE) += \ 56lib-$(CONFIG_FEATURE_IP_RULE) += \
62 ip_parse_common_args.o \ 57 ip_parse_common_args.o \
63 iprule.o \ 58 iprule.o \
64 rt_names.o \ 59 rt_names.o \