diff options
author | Will Andrews <will@FreeBSD.org> | 2002-03-16 17:36:56 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2002-03-16 17:36:56 +0000 |
commit | 79c4980e568a28a8ac71e38bd78868de59aafee0 (patch) | |
tree | dbd34e8558ea9b799ebe2c53d8746e66a6400904 /mail/drac | |
parent | a49ba055c3bae047c7f2280730fbada2dc4be85d (diff) |
[1] Fix pre-everything target specifier.
[2] Cosmetic fix: no lines longer than 80 characters (8-char tab).
Submitted by: [1] Dan Langille <dan@langille.org>
Notes
Notes:
svn path=/head/; revision=56216
Diffstat (limited to 'mail/drac')
-rw-r--r-- | mail/drac/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/mail/drac/Makefile b/mail/drac/Makefile index cdc7a53dbff4..d80299a9fc1c 100644 --- a/mail/drac/Makefile +++ b/mail/drac/Makefile @@ -31,17 +31,18 @@ MAN1= rpc.dracd.1 MAKE_ARGS+= -DWITH_TI_RPC .endif -pre-everything: - @${ECHO} "================================================================================" +pre-everything:: + @${ECHO} "=============================================================" @${ECHO} "For databases compatible with other MTAs than sendmail, use:" @${ECHO} @${ECHO} "WITH_POSTFIX=yes (Postfix)" @${ECHO} "WITH_POSTFIX_DB3=yes (Postfix with DB3 database maps)" @${ECHO} "WITH_EXIM=yes (Exim)" @${ECHO} - @${ECHO} "Define WITH_FOREGROUND to make the rpc.dracd daemon stay in foreground instead" - @${ECHO} "of detaching itself. This breaks the startup script." - @${ECHO} "================================================================================" + @${ECHO} "Define WITH_FOREGROUND to make the rpc.dracd daemon stay in" + @${ECHO} "foreground instead of detaching itself. This breaks the" + @${ECHO} "startup script." + @${ECHO} "=============================================================" post-patch: @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/rpc.dracd.1m |