This patch allows one to build init without the need to rebuild the libc at the expense of the user stubs being compiled into init.
* Makefile (OBJS): Add processUser.o. --- init/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/Makefile b/init/Makefile index ffb82ff..5ae3b50 100644 --- a/init/Makefile +++ b/init/Makefile @@ -21,7 +21,7 @@ makemode := server SRCS = init.c stubs.c OBJS = $(SRCS:.c=.o) \ startupServer.o notifyServer.o startup_replyUser.o msgServer.o \ - startup_notifyUser.o + startup_notifyUser.o processUser.o target = init HURDLIBS = shouldbeinlibc -- 1.7.10.4