aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-09 22:34:18 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-09 22:34:18 +1200
commit3a439303bebf161642d8db362eea9b01fe34ff42 (patch)
tree42ac941578dd3d8c6edcbc50d39c5e0ff46d58af /Makefile
parentAdjust color for pdksh prompt (diff)
downloaddotfiles-3a439303bebf161642d8db362eea9b01fe34ff42.tar.gz
dotfiles-3a439303bebf161642d8db362eea9b01fe34ff42.zip
Tolerate missing tic(1) at least for now
FreeBSD uses termcap(5)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 45decf3d..ce19001f 100644
--- a/Makefile
+++ b/Makefile
@@ -266,6 +266,7 @@ install-subversion :
install -pm 0644 -- subversion/config "$(HOME)"/.subversion/config
install-terminfo :
+ command -v tic || exit 0
for info in terminfo/*.info ; do \
tic -- "$$info" ; \
done