diff options
author | Brad Davis <brd@FreeBSD.org> | 2018-06-08 15:05:26 +0000 |
---|---|---|
committer | Brad Davis <brd@FreeBSD.org> | 2018-06-08 15:05:26 +0000 |
commit | dd0878dd7f397ef4c53cf6e7f415a71740dae969 (patch) | |
tree | 6d40a0851a0062f5009147674d7be4746977bbdc | |
parent | d1a920b48f846ae7e3f7429d9f1c4a05e4fd60e3 (diff) |
Notes
-rw-r--r-- | share/skel/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/share/skel/Makefile b/share/skel/Makefile index b9adb972f7b13..9ad66cff61e89 100644 --- a/share/skel/Makefile +++ b/share/skel/Makefile @@ -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> |