diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-06-26 04:34:40 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-06-26 04:34:40 +0000 |
commit | ca8af5dac84def5fc70afb09e56a7c894f570ba3 (patch) | |
tree | d09d5dd250710d197eed2e39011fc8f148a6e6a3 | |
parent | Check if uid is 0 before running mtree. If you aren't root, you just (diff) |
Add "PREFIX=${PREFIX}" to the do-install target so that things don't
go in /bin, /man, etc. (Note: the last isn't a directory name.)
Also add a comment on why it IS_INTERACTIVE (I need to hit a return).
Notes
Notes:
svn path=/head/; revision=1883
-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 7bf1d8b4a5af..d14758c9f3ca 100644 --- a/mail/procmail/Makefile +++ b/mail/procmail/Makefile @@ -3,7 +3,7 @@ # Date created: 24 September 1994 # Whom: adam # -# $Id: Makefile,v 1.16 1995/04/22 12:35:37 asami Exp $ +# $Id: Makefile,v 1.17 1995/06/13 22:39:40 ache Exp $ # DISTNAME= procmail-3.11pre3 @@ -13,9 +13,11 @@ MASTER_SITES= ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/ MAINTAINER= ache@FreeBSD.ORG +# It asks for list af directories to do test for file locking +# (defaults to /tmp and ".", so return should suffice in most cases). IS_INTERACTIVE= yes do-install: - @cd ${WRKSRC}; ${MAKE} install-suid install.man + @cd ${WRKSRC}; ${MAKE} PREFIX=${PREFIX} install-suid install.man .include <bsd.port.mk> |