diff options
author | obrien <obrien@FreeBSD.org> | 2003-02-21 02:16:35 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-02-21 02:16:35 +0000 |
commit | c21ec7f503878bf83d51971d08b62b54bf047121 (patch) | |
tree | 4b26813b8133085936b54c210fa634b967663f05 /sbin/Makefile | |
parent | ee8a8939699d7d776b7dea3830af256d20810328 (diff) | |
download | FreeBSD-src-c21ec7f503878bf83d51971d08b62b54bf047121.zip FreeBSD-src-c21ec7f503878bf83d51971d08b62b54bf047121.tar.gz |
Don't try to build devd when NO_CXX is set.
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index c94419f..3a656fc 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 \ |