Module Name:    src
Committed By:   mrg
Date:           Wed Sep 21 02:14:39 UTC 2011

Modified Files:
        src/tests: Makefile

Log Message:
only decent into crypto/tests if ${MKCRYPTO} != "no".  (sets are probably
also broken, but i didn't get that far yet.)


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/tests/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/Makefile
diff -u src/tests/Makefile:1.32 src/tests/Makefile:1.33
--- src/tests/Makefile:1.32	Thu Jul  7 07:31:29 2011
+++ src/tests/Makefile	Wed Sep 21 02:14:38 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2011/07/07 07:31:29 jruoho Exp $
+# $NetBSD: Makefile,v 1.33 2011/09/21 02:14:38 mrg Exp $
 
 .include <bsd.own.mk>
 
@@ -7,13 +7,17 @@
 TESTSDIR=	${TESTSBASE}
 ATFFILE=	yes
 
-SUBDIR=		crypto dev fs games include ipf kernel lib libexec net
+SUBDIR=		dev fs games include ipf kernel lib libexec net
 SUBDIR+=	rump sbin sys toolchain usr.bin usr.sbin util
 
 . if ${MKKMOD} != "no"
 SUBDIR+= modules
 . endif
 
+. if ${MKCRYPTO} != "no"
+SUBDIR+=	crypto
+. endif
+
 .include <bsd.test.mk>
 
 .else

Reply via email to