Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/etc Only include debug set obsolete set if MKDEBUG is not no



details:   https://anonhg.NetBSD.org/src/rev/2a58907add6f
branches:  trunk
changeset: 784674:2a58907add6f
user:      matt <matt%NetBSD.org@localhost>
date:      Tue Feb 05 16:39:26 2013 +0000

description:
Only include debug set obsolete set if MKDEBUG is not no

diffstat:

 etc/Makefile |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 7d84e042d6ce -r 2a58907add6f etc/Makefile
--- a/etc/Makefile      Tue Feb 05 15:19:18 2013 +0000
+++ b/etc/Makefile      Tue Feb 05 16:39:26 2013 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.404 2013/02/05 07:32:44 matt Exp $
+#      $NetBSD: Makefile,v 1.405 2013/02/05 16:39:26 matt Exp $
 #      from: @(#)Makefile      8.7 (Berkeley) 5/25/95
 
 # Environment variables without default values:
@@ -341,7 +341,10 @@
 #      Install var/db/obsolete set lists; this is performed by "make build"
 #
 OBSOLETE.dir=          ${.OBJDIR}/obsolete.dir
-OBSOLETE.files=                base comp debug etc games man misc text
+OBSOLETE.files=                base comp etc games man misc text
+.if ${MKDEBUG} != "no"
+OBSOLETE.files+=       debug
+.endif
 .if ${MKKMOD} != "no"
 OBSOLETE.files+=       modules
 .endif



Home | Main Index | Thread Index | Old Index