Fri Feb 5 10:16:12 2016 UTC ()
Only build tests if MKATF != no


(roy)
diff -r1.1 -r1.2 src/external/bsd/libproc/Makefile

cvs diff -r1.1 -r1.2 src/external/bsd/libproc/Makefile (expand / switch to unified diff)

--- src/external/bsd/libproc/Makefile 2015/09/24 14:12:47 1.1
+++ src/external/bsd/libproc/Makefile 2016/02/05 10:16:12 1.2
@@ -1,5 +1,12 @@ @@ -1,5 +1,12 @@
1# $NetBSD: Makefile,v 1.1 2015/09/24 14:12:47 christos Exp $ 1# $NetBSD: Makefile,v 1.2 2016/02/05 10:16:12 roy Exp $
2 2
3SUBDIR= lib .WAIT tests 3.include <bsd.own.mk>
 4
 5TEST_SUBDIRS=
 6.if ${MKATF} != "no"
 7TEST_SUBDIRS+= tests
 8.endif
 9
 10SUBDIR= lib .WAIT ${TEST_SUBDIRS}
4 11
5.include <bsd.subdir.mk> 12.include <bsd.subdir.mk>