diff options
author | tv <tv@pkgsrc.org> | 2006-05-24 17:38:53 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2006-05-24 17:38:53 +0000 |
commit | 7857231d3f63f2951c39cf5dd513d3270c73f4b5 (patch) | |
tree | 0e9e97196087ddda84a7260c55f6bc8eec4bf881 /mail/mailman | |
parent | a928f6e27d9dd75e07209c22126d8175ab2dba1a (diff) | |
download | pkgsrc-7857231d3f63f2951c39cf5dd513d3270c73f4b5.tar.gz |
Fix error comment line - # must be in the first column or preceded by
non-tabs; else make(1) interprets it as a command line.
Fixes the following message on NetBSD 2.1:
make: "/export/SRC/netbsd/pkgsrc/mail/mailman/Makefile" line 31: Unassociated shell command "# use 'postfix' for postfix"
Diffstat (limited to 'mail/mailman')
-rw-r--r-- | mail/mailman/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mailman/Makefile b/mail/mailman/Makefile index 268ec1b1b59..067e4925d0d 100644 --- a/mail/mailman/Makefile +++ b/mail/mailman/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2006/05/23 23:30:00 hubertf Exp $ +# $NetBSD: Makefile,v 1.40 2006/05/24 17:38:53 tv Exp $ DISTNAME= mailman-2.1.8rc1 PKGREVISION= 1 @@ -28,7 +28,7 @@ MAILMAN_USER?= mailman MAILMAN_GROUP?= mailman MAILMAN_CGIGROUP?= ${APACHE_GROUP} MAILMAN_MAILGROUP?= daemon # group sendmail runs under; - # use 'postfix' for postfix +# use 'postfix' for postfix MAILMAN_CGIEXT?= .cgi MESSAGE_SUBST+= EXECDIR=${EXECDIR} |