svn commit: r338362 - head/bin/csh

Brad Davis brd at FreeBSD.org
Tue Aug 28 22:51:47 UTC 2018


Author: brd
Date: Tue Aug 28 22:51:45 2018
New Revision: 338362
URL: https://svnweb.freebsd.org/changeset/base/338362

Log:
  Fix the install of /root/.login missed as part of r337849.
  
  Approved by:	re (rgrimes)

Modified:
  head/bin/csh/Makefile

Modified: head/bin/csh/Makefile
==============================================================================
--- head/bin/csh/Makefile	Tue Aug 28 22:22:06 2018	(r338361)
+++ head/bin/csh/Makefile	Tue Aug 28 22:51:45 2018	(r338362)
@@ -8,8 +8,11 @@
 
 .include <src.opts.mk>
 
-CONFGROUPS=	ETC
+CONFGROUPS=	ETC ROOT
 ETC=	csh.cshrc csh.login csh.logout
+ROOT=	dot.login
+ROOTDIR=	/root
+ROOTNAME_dot.login=	.login
 PACKAGE=runtime
 TCSHDIR= ${SRCTOP}/contrib/tcsh
 .PATH: ${TCSHDIR}


More information about the svn-src-head mailing list