diff options
author | phk <phk@FreeBSD.org> | 1998-05-27 09:25:22 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1998-05-27 09:25:22 +0000 |
commit | efc31c018f5f208877c526e8ee533c433166ec00 (patch) | |
tree | eede4f965659def075ab1a27b17812188ff509da /bin/Makefile | |
parent | 6640637c832182969bc53550479e101aa412bd5c (diff) | |
download | FreeBSD-src-efc31c018f5f208877c526e8ee533c433166ec00.zip FreeBSD-src-efc31c018f5f208877c526e8ee533c433166ec00.tar.gz |
"make world" replaces /bin/rmail even when NO_SENDMAIL has been set to
true in /etc/make.conf. Both qmail and smail use a different rmail, so
replacing rmail is a Bad Thing.
PR: 6762
Reviewed by: phk
Submitted by: Bill Trost <trost@cloud.rain.com>
Diffstat (limited to 'bin/Makefile')
-rw-r--r-- | bin/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/Makefile b/bin/Makefile index 5833e7f..15fe34f 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -1,10 +1,14 @@ # From: @(#)Makefile 8.1 (Berkeley) 5/31/93 -# $Id: Makefile,v 1.10 1998/03/13 19:39:14 jb Exp $ +# $Id: Makefile,v 1.11 1998/05/09 06:42:52 jb Exp $ SUBDIR= cat chio chmod cp csh date dd domainname echo ed expr hostname \ - kill ln ls mkdir mv pax pwd rcp rm rmail rmdir sh sleep \ + kill ln ls mkdir mv pax pwd rcp rm rmdir sh sleep \ stty sync test +.if !defined(NO_SENDMAIL) +SUBDIR+=rmail +.endif + .if ${MACHINE_ARCH} == "i386" SUBDIR+=df ps .endif |