From 4f53948a1a4c591159e62ba95749fa172bb01d0d Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Fri, 21 Feb 2003 02:16:35 +0000 Subject: [PATCH] Don't try to build devd when NO_CXX is set. --- sbin/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sbin/Makefile b/sbin/Makefile index c94419facc46..3a656fca4d3e 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -12,7 +12,6 @@ SUBDIR= adjkerntz \ clri \ comcontrol \ conscontrol \ - devd \ devfs \ dhclient \ dmesg \ @@ -78,6 +77,10 @@ SUBDIR= adjkerntz \ umount \ vinum +.if !defined(NO_CXX) +SUBDIR+=devd +.endif + .if !defined(NO_IPFILTER) SUBDIR+=ipf \ ipfs \