svn commit: r334841 - head/share/skel

Brad Davis brd at FreeBSD.org
Fri Jun 8 15:05:28 UTC 2018


Author: brd
Date: Fri Jun  8 15:05:26 2018
New Revision: 334841
URL: https://svnweb.freebsd.org/changeset/base/334841

Log:
  Simplify this Makefile.
  
  Approved by:	bapt (mentor)

Modified:
  head/share/skel/Makefile

Modified: head/share/skel/Makefile
==============================================================================
--- head/share/skel/Makefile	Fri Jun  8 14:36:10 2018	(r334840)
+++ head/share/skel/Makefile	Fri Jun  8 15:05:26 2018	(r334841)
@@ -1,13 +1,10 @@
 #	@(#)Makefile	8.1 (Berkeley) 6/8/93
 # $FreeBSD$
 
-FILESGROUPS=	FILES1 FILES2
-FILES1=		dot.cshrc dot.login dot.login_conf dot.mailrc dot.profile \
-		dot.shrc
-FILES2=		dot.mail_aliases
-FILES1DIR=	${SHAREDIR}/skel
-FILES2DIR=	${SHAREDIR}/skel
-FILES1MODE=	0644
-FILES2MODE=	0600
+FILES=		dot.cshrc dot.login dot.login_conf dot.mailrc dot.profile \
+		dot.shrc dot.mail_aliases
+FILESDIR=	${SHAREDIR}/skel
+FILESMODE=	0644
+FILESMODE_dot.mail_aliases=	0600
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list