From 9ba9bb2ffa3a960b3543efc927073385fb968859 Mon Sep 17 00:00:00 2001 Message-Id: <9ba9bb2ffa3a960b3543efc927073385fb968859.1716191696.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 19 Sep 2017 17:11:15 +0100 Subject: [PATCH] Makefile: Link in shell-specific logout functionality. Organization: Straylight/Edgeware From: Mark Wooding --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 033006a..09d911a 100644 --- a/Makefile +++ b/Makefile @@ -151,10 +151,13 @@ SCRIPTLINKS += update-buildable-branch ## Shells. DOTLINKS += .profile .shell-rc .shell-logout DOTLINKS += .shrc .rcrc -DOTLINKS += .zprofile .zshrc .zshenv -DOTLINKS += .bash_profile .bash_completion .bashrc .inputrc +DOTLINKS += .zprofile .zshrc .zlogout .zshenv +DOTLINKS += .bash_profile .bash_completion .bash_logout +DOTLINKS += .bashrc .inputrc .bash_profile_SRC = bash-profile .bash_completion_SRC = bash-completion +.bash_logout_SRC = shell-logout +.zlogout_SRC = shell-logout ## Git. DOTSUBST += .gitconfig -- [mdw]