summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2009-08-08 21:52:44 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2009-08-08 21:52:44 +0000
commite25abe44e01289aa01c6c4f199ce053d873f56db (patch)
treea52f7db2acdacf6382b139452ee240ba4e506af9 /usr.bin/tmux/Makefile
parentafc7a7f90fe800edd4702c36311f0362cff98bb9 (diff)
Infrastructure and commands to manage the environment for processes started
within tmux. There is a global environment, copied from the external environment when the server is started and each sesssion has an (initially empty) session environment which overrides it. New commands set-environment and show-environment manipulate or display the environments. A new session option, update-environment, is a space-separated list of variables which are updated from the external environment into the session environment every time a new session is created - the default is DISPLAY.
Diffstat (limited to 'usr.bin/tmux/Makefile')
-rw-r--r--usr.bin/tmux/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/tmux/Makefile b/usr.bin/tmux/Makefile
index f6712aab1ae..7de4a7cc2f1 100644
--- a/usr.bin/tmux/Makefile
+++ b/usr.bin/tmux/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.11 2009/07/30 16:32:12 nicm Exp $
+# $OpenBSD: Makefile,v 1.12 2009/08/08 21:52:43 nicm Exp $
PROG= tmux
SRCS= attributes.c buffer-poll.c buffer.c cfg.c client-fn.c \
@@ -25,8 +25,9 @@ SRCS= attributes.c buffer-poll.c buffer.c cfg.c client-fn.c \
cmd-split-window.c cmd-start-server.c cmd-string.c cmd-if-shell.c \
cmd-suspend-client.c cmd-swap-pane.c cmd-swap-window.c \
cmd-switch-client.c cmd-unbind-key.c cmd-unlink-window.c \
+ cmd-set-environment.c cmd-show-environment.c \
cmd-up-pane.c cmd-display-message.c cmd.c \
- colour.c grid-view.c grid.c input-keys.c \
+ colour.c environ.c grid-view.c grid.c input-keys.c \
input.c key-bindings.c key-string.c layout-set.c layout.c log.c \
mode-key.c names.c options-cmd.c options.c paste.c procname.c \
resize.c screen-redraw.c screen-write.c screen.c server-fn.c \