Source-Changes-HG archive

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

[src/trunk]: src/external/cddl/osnet/lib Let MKCTF alone control whether we b...



details:   https://anonhg.NetBSD.org/src/rev/2f299ab5397b
branches:  trunk
changeset: 343876:2f299ab5397b
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon Feb 29 17:46:54 2016 +0000

description:
Let MKCTF alone control whether we build libctf.

If MKDTRACE=yes MKCTF=no makes no sense, we can express that
somewhere else, not as a confusing set lists error at the end -- as
far as I know, there's no way to express MKDTRACE *or* MKCTF as a
condition for set list entries.

diffstat:

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

diffs (18 lines):

diff -r 37d6249cca26 -r 2f299ab5397b external/cddl/osnet/lib/Makefile
--- a/external/cddl/osnet/lib/Makefile  Mon Feb 29 16:25:06 2016 +0000
+++ b/external/cddl/osnet/lib/Makefile  Mon Feb 29 17:46:54 2016 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.7 2016/02/28 19:10:10 christos Exp $
+#      $NetBSD: Makefile,v 1.8 2016/02/29 17:46:54 riastradh Exp $
 #
 #
 
@@ -8,7 +8,7 @@
 SUBDIR+=       libdtrace
 SUBDIR+=       drti
 .endif
-.if ${MKDTRACE:Uno} != "no" || ${MKCTF:Uno} != "no"
+.if ${MKCTF:Uno} != "no"
 SUBDIR+=       libctf
 .endif
 



Home | Main Index | Thread Index | Old Index