aboutsummaryrefslogtreecommitdiff
path: root/Keywords
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2021-02-26 08:08:35 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2021-02-26 08:08:35 +0000
commit865e07bc114aca7cfc465386b9064190e9c94410 (patch)
treebf51fd31b842bc6eeafb31fb6cc807417b29d508 /Keywords
parent207fc0b261f8c6a50c690183fc5b5e306e26991d (diff)
downloadports-865e07bc114aca7cfc465386b9064190e9c94410.tar.gz
ports-865e07bc114aca7cfc465386b9064190e9c94410.zip
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.ucl4
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