Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Feb 2021 08:08:35 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r566588 - head/Keywords
Message-ID:  <202102260808.11Q88Zkp082298@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102260808.11Q88Zkp082298>