From 562d9dc3310f5baf3c5f198d1c5689b16110bee0 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 5 Jul 2001 19:26:45 +0000 Subject: forkpty.c uses fork(), and so must be disabled when HAS_MMU=false -Erik --- libutil/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libutil/Makefile b/libutil/Makefile index 7210aaaa4..399d52b2d 100644 --- a/libutil/Makefile +++ b/libutil/Makefile @@ -28,7 +28,10 @@ LIBUTIL=libutil.a LIBUTIL_SHARED=libutil.so LIBUTIL_SHARED_FULLNAME=libutil-$(MAJOR_VERSION).$(MINOR_VERSION).so -CSRC=forkpty.c login.c login_tty.c logout.c logwtmp.c openpty.c +CSRC=login.c login_tty.c logout.c logwtmp.c openpty.c +ifeq ($(strip $(HAS_MMU)),true) + CSRC+=forkpty.c +endif OBJS=$(patsubst %.c,%.o, $(CSRC)) all: $(OBJS) $(LIBC) -- cgit v1.2.3