Date: Fri, 8 Jun 2018 15:05:27 +0000 (UTC) From: Brad Davis <brd@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r334841 - head/share/skel Message-ID: <201806081505.w58F5RCd018540@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806081505.w58F5RCd018540>