diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-03 16:06:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-03 16:06:33 +0000 |
commit | 72a6f023642c24ed068b6564472df9d7ccec30cf (patch) | |
tree | 3dd1b2f8b660cfe7c21ab37745c45e4aceb91e44 /usr.bin/tmux/Makefile | |
parent | b216f11b658d51a71040b8ed7718b8f019686022 (diff) |
Make signal handler setup/teardown two common functions instead of six,
and reset SIGCHLD after fork to fix problems with some shells. From
Romain Francois.
Diffstat (limited to 'usr.bin/tmux/Makefile')
-rw-r--r-- | usr.bin/tmux/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/Makefile b/usr.bin/tmux/Makefile index 6add1c2b079..1e952f6a492 100644 --- a/usr.bin/tmux/Makefile +++ b/usr.bin/tmux/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.37 2010/04/06 21:35:44 nicm Exp $ +# $OpenBSD: Makefile,v 1.38 2010/05/03 16:06:32 nicm Exp $ PROG= tmux SRCS= attributes.c cfg.c client.c clock.c \ @@ -35,7 +35,7 @@ SRCS= attributes.c cfg.c client.c clock.c \ layout-set.c layout-string.c layout.c log.c job.c \ mode-key.c names.c options.c paste.c procname.c \ resize.c screen-redraw.c screen-write.c screen.c session.c status.c \ - server-fn.c server.c server-client.c server-window.c \ + server-fn.c server.c server-client.c server-window.c signal.c \ tmux.c tty-keys.c tty-term.c tty.c utf8.c \ window-choose.c window-clock.c window-copy.c window.c \ xterm-keys.c xmalloc.c |