From 45bd125dccdc7aef32af99cc6624a74dd2e24371 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Fri, 21 Sep 2007 08:49:43 +0000 Subject: Use a pty for prefixed output instead of pipes for stdout/stderr. This is so that programs can get information about the controlling terminal. This change was triggered by bug #188506 where it's possible that stdin, stdout and stderr didn't point to a terminal but ended up on one via our pipes. Using a pty means that stdout and stderr always point to a terminal, but we lose the ability to tell them apart. If there is not a pty available then we use un-prefixed output as normal. This change has also introduced the need for a signal pipe so that SIGCHLD can exit the loop cleanly. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 96799aaa..fd79b187 100644 --- a/src/Makefile +++ b/src/Makefile @@ -59,7 +59,7 @@ LDLIBS_LIBRC = -leinfo RCOBJS = checkown.o env-update.o fstabinfo.o mountinfo.o \ rc-depend.o rc-plugin.o rc-status.o rc-update.o runscript.o \ start-stop-daemon.o rc.o -LDLIBS_RC = $(LDLIBS_LIBRC) -lrc +LDLIBS_RC = $(LDLIBS_LIBRC) -lrc -lutil LIB_TARGETS = $(LIBEINFOSO) $(LIBRCSO) SBIN_TARGETS = rc -- cgit v1.2.3