From fcb60eb0bbc3da660656114615da444801277759 Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Tue, 25 Jul 2017 00:28:23 +0000 Subject: [PATCH] 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 --- etc/mtree/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/etc/mtree/Makefile b/etc/mtree/Makefile index a47376478c2..27dfcc751ae 100644 --- a/etc/mtree/Makefile +++ b/etc/mtree/Makefile @@ -2,7 +2,9 @@ .include -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