diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-22 20:09:41 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-22 20:09:41 +0000 |
commit | b559105cfbbfb662a6e15e169a469e8a95a9ccf4 (patch) | |
tree | 77d0f9680b959caa3b3d3202dddc444419d5328c | |
parent | 7d75a96b15327050a294b1f54981781ce6e551e2 (diff) | |
download | busybox-w32-b559105cfbbfb662a6e15e169a469e8a95a9ccf4.tar.gz busybox-w32-b559105cfbbfb662a6e15e169a469e8a95a9ccf4.tar.bz2 busybox-w32-b559105cfbbfb662a6e15e169a469e8a95a9ccf4.zip |
fix a thinko in build system
-rw-r--r-- | networking/udhcp/Kbuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/Kbuild b/networking/udhcp/Kbuild index 7d4747083..f4be6dfc1 100644 --- a/networking/udhcp/Kbuild +++ b/networking/udhcp/Kbuild | |||
@@ -15,7 +15,7 @@ lib-$(CONFIG_APP_UDHCPC) += dhcpc.o clientpacket.o clientsocket.o \ | |||
15 | script.o | 15 | script.o |
16 | 16 | ||
17 | UDHCPC_NEEDS_ARPING-$(CONFIG_FEATURE_UDHCPC_ARPING) = y | 17 | UDHCPC_NEEDS_ARPING-$(CONFIG_FEATURE_UDHCPC_ARPING) = y |
18 | lib-$(UDHCPC_NEEDS_ARPING) += arpping.o | 18 | lib-$(UDHCPC_NEEDS_ARPING-y) += arpping.o |
19 | 19 | ||
20 | lib-$(CONFIG_APP_UDHCPD) += dhcpd.o arpping.o files.o leases.o \ | 20 | lib-$(CONFIG_APP_UDHCPD) += dhcpd.o arpping.o files.o leases.o \ |
21 | serverpacket.o static_leases.o | 21 | serverpacket.o static_leases.o |