diff options
author | jkh <jkh@FreeBSD.org> | 1995-03-05 04:18:05 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-03-05 04:18:05 +0000 |
commit | 0abfdc11f5c6090e6f9d77c41c5633741cea4da9 (patch) | |
tree | 4b3f6d83000d3d3c5f9d5938d1830f2997df356e /mail | |
parent | a83f4174204265ed7c5d6fd33217e709e53b6631 (diff) | |
download | FreeBSD-ports-0abfdc11f5c6090e6f9d77c41c5633741cea4da9.zip FreeBSD-ports-0abfdc11f5c6090e6f9d77c41c5633741cea4da9.tar.gz |
This is interactive - only install if we're not in BATCH mode.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/procmail/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/procmail/Makefile b/mail/procmail/Makefile index 7a71e26..a0e38e9 100644 --- a/mail/procmail/Makefile +++ b/mail/procmail/Makefile @@ -3,15 +3,17 @@ # Date created: 24 September 1994 # Whom: adam # -# $Id: Makefile,v 1.8 1994/11/19 12:29:15 ats Exp $ +# $Id: Makefile,v 1.9 1994/11/22 01:53:32 ache Exp $ # -DISTNAME= procmail-3.10 +DISTNAME= procmail-3.10 MASTER_SITES= ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/ IS_INTERACTIVE= yes install: +.if !defined(BATCH) @echo "===> Installing for ${DISTNAME}" @cd ${WRKSRC}; ${MAKE} install-suid install.man +.endif .include <bsd.port.mk> |