aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8c6d86cf..9c23c491 100644
--- a/Makefile
+++ b/Makefile
@@ -575,9 +575,17 @@ install-systemd:
&& cp -p -- systemd/user/* $(XDG_CONFIG_HOME)/systemd/user \
&& systemctl --user daemon-reload \
+# Need to install these in appropriate order to meet dependencies; could trust
+# the system glob, but a fixed list is just more straightforward
install-terminfo:
- find terminfo -type f -name '*.ti' \
- -exec tic -- {} \;
+ tic terminfo/putty.ti
+ tic terminfo/putty-256color.ti
+ tic terminfo/rxvt.ti
+ tic terminfo/rxvt-256color.ti
+ tic terminfo/rxvt-unicode.ti
+ tic terminfo/rxvt-unicode-256color.ti
+ tic terminfo/screen.ti
+ tic terminfo/screen-256color.ti
install-tidy: install-sh
cp -p -- tidy/profile.d/* $(HOME)/.profile.d