aboutsummaryrefslogtreecommitdiff
path: root/Keywords/terminfo.ucl
diff options
context:
space:
mode:
Diffstat (limited to 'Keywords/terminfo.ucl')
-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