Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Nov 2007 14:40:03 GMT
From:      Felippe de Meirelles Motta <lippe@freebsdbrasil.com.br>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/118139: [PATCH] port mail/qmail-scanner: Makefile: QS_NOTIFY not correctly passed to configure
Message-ID:  <200711201440.lAKEe3Lx026896@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/118139; it has been noted by GNATS.

From: Felippe de Meirelles Motta <lippe@freebsdbrasil.com.br>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/118139: [PATCH] port mail/qmail-scanner: Makefile: QS_NOTIFY
 not correctly passed to configure
Date: Tue, 20 Nov 2007 13:33:04 +0000

 This is a multi-part message in MIME format.
 --------------030808080704040509040809
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 Content-Transfer-Encoding: 7bit
 
 Edwin Groothuis escreveu:
 > Maintainer of mail/qmail-scanner,
 > 
 > Please note that PR ports/118139 has just been submitted.
 > 
 > If it contains a patch for an upgrade, an enhancement or a bug fix
 > you agree on, reply to this email stating that you approve the patch
 > and a committer will take care of it.
 > 
 > The full text of the PR can be found at:
 >     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/118139
 > 
 
 Hello Edwin,
 
 Yes, I agree that with minor changes, follow as attach, thanks!
 
 -- 
 
 Atenciosamente,
 Felippe de Meirelles Motta
 FreeBSD Brasil LTDA.
 http://www.freebsdbrasil.com.br
 
 --------------030808080704040509040809
 Content-Type: text/x-patch;
  name="qscanner.diff"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline;
  filename="qscanner.diff"
 
 Index: Makefile
 ===================================================================
 RCS file: /home/ncvs/ports/mail/qmail-scanner/Makefile,v
 retrieving revision 1.18
 diff -u -r1.18 Makefile
 --- Makefile	5 Oct 2007 14:19:51 -0000	1.18
 +++ Makefile	20 Nov 2007 13:27:17 -0000
 @@ -85,11 +85,11 @@
  CONFIGURE_ARGS+=	--normalize no
  .endif
  
 -.if !defined(QS_USER)
 +.if defined(QS_USER)
  CONFIGURE_ARGS+=	--qs-user "${QS_USER}"
  .endif
  
 -.if !defined(QS_ADMIN)
 +.if defined(QS_ADMIN)
  CONFIGURE_ARGS+=	--admin "${QS_ADMIN}"
  .endif
  
 @@ -107,6 +107,8 @@
  
  .if !defined(QS_NOTIFY)
  CONFIGURE_ARGS+=	--notify psender,precips
 +.else
 +CONFIGURE_ARGS+=	--notify "${QS_NOTIFY}"
  .endif
  
  .if defined(QS_LOCALDOMAINS) && !empty(QS_LOCALDOMAINS)
 
 --------------030808080704040509040809--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200711201440.lAKEe3Lx026896>