diff options
author | dim <dim@FreeBSD.org> | 2016-01-04 20:31:09 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2016-01-04 20:31:09 +0000 |
commit | db873d7452584205dd063528dc8addbf28aa396b (patch) | |
tree | ce0c2f03d6f3cd7ad2ea424abe13bf26cdcccf3d /etc/mtree | |
parent | 639d21dadc7392ad8dcdda30c92723510898f3c1 (diff) | |
parent | 3f499d5271ef24e15d5320d7f55b05e28d629662 (diff) | |
download | FreeBSD-src-db873d7452584205dd063528dc8addbf28aa396b.zip FreeBSD-src-db873d7452584205dd063528dc8addbf28aa396b.tar.gz |
Merge ^/head r293036 through r293174.
Diffstat (limited to 'etc/mtree')
-rw-r--r-- | etc/mtree/BSD.libsoft.dist | 14 | ||||
-rw-r--r-- | etc/mtree/Makefile | 4 |
2 files changed, 18 insertions, 0 deletions
diff --git a/etc/mtree/BSD.libsoft.dist b/etc/mtree/BSD.libsoft.dist new file mode 100644 index 0000000..69026a7 --- /dev/null +++ b/etc/mtree/BSD.libsoft.dist @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# Please see the file src/etc/mtree/README before making changes to this file. +# + +/set type=dir uname=root gname=wheel mode=0755 +. + libsoft + dtrace + .. + i18n + .. + .. +.. diff --git a/etc/mtree/Makefile b/etc/mtree/Makefile index 1a941e4..d8df25d 100644 --- a/etc/mtree/Makefile +++ b/etc/mtree/Makefile @@ -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 |