diff options
| author | tron <tron@NetBSD.org> | 2000-02-08 14:06:01 +0000 |
|---|---|---|
| committer | tron <tron@NetBSD.org> | 2000-02-08 14:06:01 +0000 |
| commit | 6e7897c5a9d641391c48d119fb44bb0a0e9a320d (patch) | |
| tree | f9dc0918e936b58870d85dd09dc73a4067c20d81 /gnu | |
| parent | 98806601bd51014e76317d35b5c9fd95f329615c (diff) | |
Don't build "sendmail" if "NO_SENDMAIL" is defined.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.sbin/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/usr.sbin/Makefile b/gnu/usr.sbin/Makefile index 45788bda879..cd738cb77e1 100644 --- a/gnu/usr.sbin/Makefile +++ b/gnu/usr.sbin/Makefile @@ -1,5 +1,10 @@ -# $NetBSD: Makefile,v 1.1.1.1 2000/02/08 13:45:33 tron Exp $ +# $NetBSD: Makefile,v 1.2 2000/02/08 14:06:01 tron Exp $ -SUBDIR= sendmail +# XXX Temporary for NO_SENDMAIL +.include <bsd.own.mk> + +.if !defined(NO_SENDMAIL) +SUBDIR+= sendmail +.endif .include <bsd.subdir.mk> |
