svn commit: r566588 - head/Keywords

Baptiste Daroussin bapt at FreeBSD.org
Fri Feb 26 08:08:35 UTC 2021


Author: bapt
Date: Fri Feb 26 08:08:35 2021
New Revision: 566588
URL: https://svnweb.freebsd.org/changeset/ports/566588

Log:
  tic should be run with -x to accept extensions

Modified:
  head/Keywords/terminfo.ucl

Modified: head/Keywords/terminfo.ucl
==============================================================================
--- head/Keywords/terminfo.ucl	Fri Feb 26 07:36:47 2021	(r566587)
+++ head/Keywords/terminfo.ucl	Fri Feb 26 08:08:35 2021	(r566588)
@@ -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


More information about the svn-ports-all mailing list