Module Name: src
Committed By: riastradh
Date: Mon Feb 29 20:59:35 UTC 2016
Modified Files:
src/lib: Makefile
Log Message:
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?
To generate a diff of this commit:
cvs rdiff -u -r1.239 -r1.240 src/lib/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/Makefile
diff -u src/lib/Makefile:1.239 src/lib/Makefile:1.240
--- src/lib/Makefile:1.239 Tue Jan 26 17:47:35 2016
+++ src/lib/Makefile Mon Feb 29 20:59:35 2016
@@ -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+= .WAIT
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