From owner-svn-src-head@freebsd.org Sun Jan 3 04:32:07 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 936C8A532C1; Sun, 3 Jan 2016 04:32:07 +0000 (UTC) (envelope-from imp@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 mx1.freebsd.org (Postfix) with ESMTPS id 493431938; Sun, 3 Jan 2016 04:32:07 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u034W68u043636; Sun, 3 Jan 2016 04:32:06 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u034W6en043633; Sun, 3 Jan 2016 04:32:06 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201601030432.u034W6en043633@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Sun, 3 Jan 2016 04:32:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r293068 - in head/etc: . mtree X-SVN-Group: head 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.20 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: Sun, 03 Jan 2016 04:32:07 -0000 Author: imp Date: Sun Jan 3 04:32:05 2016 New Revision: 293068 URL: https://svnweb.freebsd.org/changeset/base/293068 Log: Add libsoft to the tree, just like lib32. Added: head/etc/mtree/BSD.libsoft.dist - copied, changed from r293067, head/etc/mtree/BSD.lib32.dist Modified: head/etc/Makefile head/etc/mtree/Makefile Modified: head/etc/Makefile ============================================================================== --- head/etc/Makefile Sun Jan 3 04:32:04 2016 (r293067) +++ head/etc/Makefile Sun Jan 3 04:32:05 2016 (r293068) @@ -154,6 +154,9 @@ MTREE= BSD.debug.dist BSD.include.dist B .if ${MK_LIB32} != "no" MTREE+= BSD.lib32.dist .endif +.if ${MK_LIBSOFT} != "no" +MTREE+= BSD.libsoft.dist +.endif .if ${MK_TESTS} != "no" MTREE+= BSD.tests.dist .endif @@ -354,6 +357,10 @@ MTREES+= mtree/BSD.groff.dist /usr MTREES+= mtree/BSD.lib32.dist /usr MTREES+= mtree/BSD.lib32.dist /usr/lib/debug/usr .endif +.if ${MK_LIBSOFT} != "no" +MTREES+= mtree/BSD.libsoft.dist /usr +MTREES+= mtree/BSD.libsoft.dist /usr/lib/debug/usr +.endif .if ${MK_TESTS} != "no" MTREES+= mtree/BSD.tests.dist ${TESTSBASE} MTREES+= mtree/BSD.tests.dist /usr/lib/debug/${TESTSBASE} Copied and modified: head/etc/mtree/BSD.libsoft.dist (from r293067, head/etc/mtree/BSD.lib32.dist) ============================================================================== --- head/etc/mtree/BSD.lib32.dist Sun Jan 3 04:32:04 2016 (r293067, copy source) +++ head/etc/mtree/BSD.libsoft.dist Sun Jan 3 04:32:05 2016 (r293068) @@ -5,7 +5,7 @@ /set type=dir uname=root gname=wheel mode=0755 . - lib32 + libsoft dtrace .. i18n Modified: head/etc/mtree/Makefile ============================================================================== --- head/etc/mtree/Makefile Sun Jan 3 04:32:04 2016 (r293067) +++ head/etc/mtree/Makefile Sun Jan 3 04:32:05 2016 (r293068) @@ -6,6 +6,7 @@ FILES= ${_BSD.debug.dist} \ BSD.include.dist \ BSD.root.dist \ ${_BSD.lib32.dist} \ + ${_BSD.libsoft.dist} \ ${_BSD.sendmail.dist} \ ${_BSD.tests.dist} \ BSD.usr.dist \ @@ -20,6 +21,9 @@ _BSD.groff.dist= BSD.groff.dist .if ${MK_LIB32} != "no" _BSD.lib32.dist= BSD.lib32.dist .endif +.if ${MK_LIBSOFT} != "no" +_BSD.libsoft.dist= BSD.libsoft.dist +.endif .if ${MK_SENDMAIL} != "no" _BSD.sendmail.dist= BSD.sendmail.dist .endif