diff options
author | Roy Marples <roy@marples.name> | 2007-09-21 08:49:43 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-09-21 08:49:43 +0000 |
commit | 45bd125dccdc7aef32af99cc6624a74dd2e24371 (patch) | |
tree | 130770fac1c33514444f9155947f56fc5bcb84ff /src/Makefile | |
parent | ca58877ed06b259ce37a6240746c733d47b0a179 (diff) |
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.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |