diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-02-26 08:08:35 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-02-26 08:08:35 +0000 |
commit | 865e07bc114aca7cfc465386b9064190e9c94410 (patch) | |
tree | bf51fd31b842bc6eeafb31fb6cc807417b29d508 /Keywords | |
parent | 207fc0b261f8c6a50c690183fc5b5e306e26991d (diff) |
tic should be run with -x to accept extensions
Notes
Notes:
svn path=/head/; revision=566588
Diffstat (limited to 'Keywords')
-rw-r--r-- | Keywords/terminfo.ucl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Keywords/terminfo.ucl b/Keywords/terminfo.ucl index 870a03296268..7a0faa61223a 100644 --- a/Keywords/terminfo.ucl +++ b/Keywords/terminfo.ucl @@ -7,7 +7,7 @@ post-install: <<EOD terminfodb=${terminfodir}/terminfo.db if [ -e ${terminfodb}.default ] && which -s tic; then cp ${terminfodb}.default ${terminfodb} - find -s ${terminfodir} -name "*.terminfo" -exec tic {} \; + find -s ${terminfodir} -name "*.terminfo" -exec tic -x {} \; fi EOD post-deinstall: <<EOD @@ -15,7 +15,7 @@ post-deinstall: <<EOD terminfodb=${terminfodir}/terminfo.db if [ -e ${terminfodb}.default ] && which -s tic; then cp ${terminfodb}.default ${terminfodb} - find -s ${terminfodir} -name "*.terminfo" -exec tic {} \; + find -s ${terminfodir} -name "*.terminfo" -exec tic -x {} \; else rm -f ${terminfodb} fi |