svn commit: r321446 - head/etc/mtree

Ngie Cooper ngie at FreeBSD.org
Tue Jul 25 00:28:25 UTC 2017


Author: ngie
Date: Tue Jul 25 00:28:23 2017
New Revision: 321446
URL: https://svnweb.freebsd.org/changeset/base/321446

Log:
  Unconditionally install etc/mtree/BSD.debug.dist again
  
  r279248 unconditionally installed BSD.debug.dist for ease-of-developer-use.
  Restore the previous behavior.
  
  While here, add a comment to note that this is intentional to avoid accidental
  future removal.
  
  MFC after:	2 months
  MFC with:	r321444

Modified:
  head/etc/mtree/Makefile

Modified: head/etc/mtree/Makefile
==============================================================================
--- head/etc/mtree/Makefile	Tue Jul 25 00:12:48 2017	(r321445)
+++ head/etc/mtree/Makefile	Tue Jul 25 00:28:23 2017	(r321446)
@@ -2,7 +2,9 @@
 
 .include <src.opts.mk>
 
-FILES=	${_BSD.debug.dist} \
+# NOTE: BSD.debug.dist is unconditionally installed for developer ease-of-use.
+FILES=	\
+	BSD.debug.dist \
 	BSD.include.dist \
 	BSD.root.dist \
 	${_BSD.lib32.dist} \
@@ -12,9 +14,6 @@ FILES=	${_BSD.debug.dist} \
 	BSD.usr.dist \
 	BSD.var.dist
 
-.if ${MK_DEBUG_FILES} != "no"
-_BSD.debug.dist=	BSD.debug.dist
-.endif
 .if ${MK_LIB32} != "no"
 _BSD.lib32.dist=	BSD.lib32.dist
 .endif


More information about the svn-src-head mailing list