aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-05-25 21:10:07 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-05-25 21:10:07 +1200
commit92d59e839d7a48935512fbbfa3183fd567d53aaf (patch)
tree5fa17686916fd2a98228fcb483e1287358738ac6
parentMerge branch 'hotfix/v9.10.4' (diff)
parentBump VERSION (diff)
downloaddotfiles-9.10.5.tar.gz (sig)
dotfiles-9.10.5.zip
Merge branch 'hotfix/v9.10.5'v9.10.5
* hotfix/v9.10.5: Install terminfo files in a fixed order
-rw-r--r--Makefile12
-rw-r--r--VERSION4
2 files changed, 12 insertions, 4 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
diff --git a/VERSION b/VERSION
index 2d0f4a97..9bcefb9b 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v9.10.4
-Mon, 25 May 2020 04:40:49 +0000
+tejr dotfiles v9.10.5
+Mon, 25 May 2020 09:09:30 +0000