summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrooks <brooks@FreeBSD.org>2014-01-30 21:25:01 +0000
committerbrooks <brooks@FreeBSD.org>2014-01-30 21:25:01 +0000
commit70d3dd535136a5d8f4b47d26e8b3307d50b66a64 (patch)
tree2e75a9fbb61ae92c9216c3d8137c5ef713d97368
parentf1b43045b34f3a11eb2202d754836c300f3aee39 (diff)
downloadFreeBSD-src-70d3dd535136a5d8f4b47d26e8b3307d50b66a64.zip
FreeBSD-src-70d3dd535136a5d8f4b47d26e8b3307d50b66a64.tar.gz
Merge from CheriBSD:
commit 6b569451b92c48ccf1768da32e7e89189e1aa253 Author: Brooks Davis <brooks@one-eyed-alien.net> Date: Mon Jan 27 22:50:46 2014 +0000 Always install nmtree as mtree. For compability, link mtree to nmtree. X-MFC after: never Sponsored by: DARPA, AFRL
-rw-r--r--share/man/man5/src.conf.510
-rw-r--r--share/mk/bsd.own.mk1
-rw-r--r--tools/build/options/WITHOUT_NMTREE9
-rw-r--r--usr.sbin/mtree/Makefile5
-rw-r--r--usr.sbin/nmtree/Makefile15
5 files changed, 4 insertions, 36 deletions
diff --git a/share/man/man5/src.conf.5 b/share/man/man5/src.conf.5
index f8152b0..35c192c 100644
--- a/share/man/man5/src.conf.5
+++ b/share/man/man5/src.conf.5
@@ -749,16 +749,6 @@ Set to not build NLS catalogs.
.\" from FreeBSD: head/tools/build/options/WITHOUT_NLS_CATALOGS 156932 2006-03-21 07:50:50Z ru
Set to not build NLS catalog support for
.Xr csh 1 .
-.It Va WITHOUT_NMTREE
-.\" from FreeBSD: head/tools/build/options/WITHOUT_NMTREE 257138 2013-10-25 22:45:18Z brooks
-Set to install
-.Xr fmtree 8
-as
-.Xr mtree 8 .
-By default
-.Xr nmtree 8
-is installed as
-.Xr mtree 8 .
.It Va WITHOUT_NS_CACHING
.\" from FreeBSD: head/tools/build/options/WITHOUT_NS_CACHING 172803 2007-10-19 14:01:25Z ru
Set to disable name caching in the
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index 76ac493..7fe2b04 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -321,7 +321,6 @@ __DEFAULT_YES_OPTIONS = \
NIS \
NLS \
NLS_CATALOGS \
- NMTREE \
NS_CACHING \
NTP \
OPENSSH \
diff --git a/tools/build/options/WITHOUT_NMTREE b/tools/build/options/WITHOUT_NMTREE
deleted file mode 100644
index c921096..0000000
--- a/tools/build/options/WITHOUT_NMTREE
+++ /dev/null
@@ -1,9 +0,0 @@
-.\" $FreeBSD$
-Set to install
-.Xr fmtree 8
-as
-.Xr mtree 8 .
-By default
-.Xr nmtree 8
-is installed as
-.Xr mtree 8 .
diff --git a/usr.sbin/mtree/Makefile b/usr.sbin/mtree/Makefile
index c378455..7b08b7e 100644
--- a/usr.sbin/mtree/Makefile
+++ b/usr.sbin/mtree/Makefile
@@ -14,11 +14,6 @@ CFLAGS+= -DMD5 -DSHA1 -DRMD160 -DSHA256
DPADD= ${LIBMD}
LDADD= -lmd
-.if ${MK_NMTREE} == "no"
-LINKS= ${BINDIR}/fmtree ${BINDIR}/mtree
-MLINKS= fmtree.8 mtree.8
-.endif
-
CLEANFILES+= fmtree.8
fmtree.8: mtree.8
diff --git a/usr.sbin/nmtree/Makefile b/usr.sbin/nmtree/Makefile
index 138e28d..f5c38b5 100644
--- a/usr.sbin/nmtree/Makefile
+++ b/usr.sbin/nmtree/Makefile
@@ -4,8 +4,8 @@
.PATH: ${.CURDIR}/../../contrib/mtree
-PROG= nmtree
-MAN= nmtree.8
+PROG= mtree
+MAN= mtree.8
SRCS= compare.c crc.c create.c excludes.c getid.c misc.c mtree.c \
only.c spec.c specspec.c verify.c
LDADD+= -lmd -lutil
@@ -20,14 +20,7 @@ LIBNETBSD= ${LIBNETBSDDIR}/libnetbsd.a
DPADD+= ${LIBNETBSD}
LDADD+= ${LIBNETBSD}
-.if ${MK_NMTREE} != "no"
-LINKS= ${BINDIR}/nmtree ${BINDIR}/mtree
-MLINKS= nmtree.8 mtree.8
-.endif
-
-CLEANFILES+= nmtree.8
-
-nmtree.8: mtree.8
- cp ${.ALLSRC} ${.TARGET}
+LINKS= ${BINDIR}/mtree ${BINDIR}/nmtree
+MLINKS= mtree.8 nmtree.8
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud