From 38c13341d1eb9d518ef4047e746822e26ecff5c0 Mon Sep 17 00:00:00 2001 From: gmcgarry Date: Sat, 16 Aug 2008 23:59:45 +0000 Subject: [PATCH] Dont build atf tools with (${MKATF} == no). --- usr.bin/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/usr.bin/Makefile b/usr.bin/Makefile index f2905cf680f0..8e8bb33cf710 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.167 2008/07/22 21:07:58 dyoung Exp $ +# $NetBSD: Makefile,v 1.168 2008/08/16 23:59:45 gmcgarry Exp $ # from: @(#)Makefile 8.3 (Berkeley) 1/7/94 .include -SUBDIR= apply apropos asa at atf-compile atf-config atf-report atf-run \ - atf-version audio awk \ +SUBDIR= apply apropos asa at audio awk \ banner basename biff bthset btkey btpin \ bzip2 bzip2recover cal calendar cap_mkdb cdplay \ checknr chflags chpass cksum cmp col colcrt colrm \ @@ -31,6 +30,10 @@ SUBDIR= apply apropos asa at atf-compile atf-config atf-report atf-run \ wall wc what whatis whereis who whois window \ write xargs xinstall xlint xstr yacc yes +.if (${MKATF} != "no") +SUBDIR+= atf-compile atf-config atf-report atf-run atf-version +.endif + .if (${MKHESIOD} != "no") SUBDIR+= hesinfo .endif