From owner-svn-src-head@freebsd.org Fri Jun 8 15:05:27 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8CEB101D54F; Fri, 8 Jun 2018 15:05:27 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8819B86967; Fri, 8 Jun 2018 15:05:27 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 66AA810A32; Fri, 8 Jun 2018 15:05:27 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w58F5R9f018541; Fri, 8 Jun 2018 15:05:27 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w58F5RCd018540; Fri, 8 Jun 2018 15:05:27 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201806081505.w58F5RCd018540@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Fri, 8 Jun 2018 15:05:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r334841 - head/share/skel X-SVN-Group: head X-SVN-Commit-Author: brd X-SVN-Commit-Paths: head/share/skel X-SVN-Commit-Revision: 334841 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2018 15:05:28 -0000 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