svn commit: r356991 - head/share/termcap

Ed Maste emaste at FreeBSD.org
Wed Jan 22 18:55:36 UTC 2020


Author: emaste
Date: Wed Jan 22 18:55:36 2020
New Revision: 356991
URL: https://svnweb.freebsd.org/changeset/base/356991

Log:
  Tag etc/termcap with package=runtime
  
  /etc/termcap is a symlink to /usr/share/misc/termcap, which is in the
  runtime package.  Tag the symlink with the same package so that it is
  handled correctly on pkgbase-installed/updated systems.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/share/termcap/Makefile

Modified: head/share/termcap/Makefile
==============================================================================
--- head/share/termcap/Makefile	Wed Jan 22 18:40:19 2020	(r356990)
+++ head/share/termcap/Makefile	Wed Jan 22 18:55:36 2020	(r356991)
@@ -19,6 +19,7 @@ termcap.db: termcap
 	cap_mkdb ${CAP_MKDB_ENDIAN} -f ${.TARGET:R} ${.ALLSRC}
 
 etc-termcap:
-	${INSTALL_SYMLINK} ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap
+	${INSTALL_SYMLINK} -T "package=runtime" \
+	    ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list