Source-Changes-HG archive

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

[src/trunk]: src/lib Skip libctf if MKCTF=no irrespective of MKDTRACE, for real.



details:   https://anonhg.NetBSD.org/src/rev/f265cc37d0f9
branches:  trunk
changeset: 343885:f265cc37d0f9
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon Feb 29 20:59:35 2016 +0000

description:
Skip libctf if MKCTF=no irrespective of MKDTRACE, for real.

Apparently this logic is copied in lib/Makefile and in
external/cddl/osnet/lib/Makefile.  Is the latter even used?

diffstat:

 lib/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 50e18d6277c2 -r f265cc37d0f9 lib/Makefile
--- a/lib/Makefile      Mon Feb 29 18:59:52 2016 +0000
+++ b/lib/Makefile      Mon Feb 29 20:59:35 2016 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.239 2016/01/26 17:47:35 christos Exp $
+#      $NetBSD: Makefile,v 1.240 2016/02/29 20:59:35 riastradh Exp $
 #      from: @(#)Makefile      5.25.1.1 (Berkeley) 5/7/91
 
 .include <bsd.own.mk>
@@ -103,7 +103,7 @@
 SUBDIR+=       ../external/bsd/librtld_db/lib          # depends on libutil
 .endif
 
-.if ${MKDTRACE} != "no" || ${MKCTF} != "no"
+.if ${MKCTF} != "no"
 SUBDIR+=        ../external/cddl/osnet/lib/libctf
 .endif
 



Home | Main Index | Thread Index | Old Index