svn commit: r357832 - head/usr.sbin/rmt

Ed Maste emaste at FreeBSD.org
Wed Feb 12 17:30:10 UTC 2020


Author: emaste
Date: Wed Feb 12 17:30:09 2020
New Revision: 357832
URL: https://svnweb.freebsd.org/changeset/base/357832

Log:
  tag /etc/rmt symlink with pkgbase package
  
  For historical reasons the "remote magtape protocol module" rmt gets
  invoked as /etc/rmt, which is a symlink to /usr/sbin/rmt.  Put it in the
  utilities package, as /usr/sbin/rmt is.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/rmt/Makefile

Modified: head/usr.sbin/rmt/Makefile
==============================================================================
--- head/usr.sbin/rmt/Makefile	Wed Feb 12 17:12:26 2020	(r357831)
+++ head/usr.sbin/rmt/Makefile	Wed Feb 12 17:30:09 2020	(r357832)
@@ -7,6 +7,7 @@ MAN=	rmt.8
 # called from /usr/src/etc/Makefile
 etc-rmt:
 	rm -f ${DESTDIR}/etc/rmt
-	${INSTALL_RSYMLINK} ..${BINDIR}/rmt ${DESTDIR}/etc/rmt
+	${INSTALL_RSYMLINK} -T "package=utilities" \
+	    ..${BINDIR}/rmt ${DESTDIR}/etc/rmt
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list