diff options
author | Denis Vlasenko | 2007-03-26 13:22:35 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-03-26 13:22:35 +0000 |
commit | af1c84360f08f2ee32799ba266b0c384dde68173 (patch) | |
tree | 4272fbe921bc693c52197ac5d227fcbc42b3c154 /networking/udhcp/Kbuild | |
parent | 5a142025d372ae5dff7d7cf98f442edaafd1dc30 (diff) | |
download | busybox-af1c84360f08f2ee32799ba266b0c384dde68173.zip busybox-af1c84360f08f2ee32799ba266b0c384dde68173.tar.gz |
Move udhcp to new NOMMU helpers.
Fix server part to compile under NOMMU.
Client is not compilable yet.
On MMU everything compiles (and maybe even works :)
Diffstat (limited to 'networking/udhcp/Kbuild')
-rw-r--r-- | networking/udhcp/Kbuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/Kbuild b/networking/udhcp/Kbuild index 57d2511..aed40b9 100644 --- a/networking/udhcp/Kbuild +++ b/networking/udhcp/Kbuild @@ -6,9 +6,9 @@ # lib-y:= -lib-$(CONFIG_APP_UDHCPC) += common.o options.o packet.o pidfile.o \ +lib-$(CONFIG_APP_UDHCPC) += common.o options.o packet.o \ signalpipe.o socket.o -lib-$(CONFIG_APP_UDHCPD) += common.o options.o packet.o pidfile.o \ +lib-$(CONFIG_APP_UDHCPD) += common.o options.o packet.o \ signalpipe.o socket.o lib-$(CONFIG_APP_UDHCPC) += dhcpc.o clientpacket.o clientsocket.o \ script.o |