Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Jul 2009 17:18:20 +0200
From:      Marcin Wisnicki <mwisnicki+freebsd@gmail.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        ache@FreeBSD.org
Subject:   ports/137269: [PATCH] mail/procmail: batch build not possible
Message-ID:  <4a71b9be.0707d00a.014f.fffff60c@mx.google.com>
Resent-Message-ID: <200907301540.n6UFe5dj064929@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         137269
>Category:       ports
>Synopsis:       [PATCH] mail/procmail: batch build not possible
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jul 30 15:40:05 UTC 2009
>Closed-Date:
>Last-Modified:
>Originator:     Marcin Wisnicki
>Release:        FreeBSD 7.2-STABLE i386
>Organization:
>Environment:
System: FreeBSD ghost.pnet.one.pl 7.2-STABLE FreeBSD 7.2-STABLE #0: Wed May  6 20:43:28 CEST
>Description:
Don't know how it works on build cluster, but for me building this port with
'make -DBATCH install' does not work - it still asks the question.

Passing BATCH to child make solves the problem.

Port maintainer (ache@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- procmail-3.22_6.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/mail/procmail.orig/Makefile /usr/ports/mail/procmail/Makefile
--- /usr/ports/mail/procmail.orig/Makefile	2009-05-08 01:19:03.000000000 +0200
+++ /usr/ports/mail/procmail/Makefile	2009-07-30 11:52:11.000000000 +0200
@@ -35,7 +35,9 @@
 
 # It asks for list of directories to do test for file locking
 # (defaults to /tmp and ".", so return should suffice in most cases).
-.if !defined(BATCH) # handled in patch-aa
+.if defined(BATCH) # handled in patch-aa
+MAKE_ARGS+=	-DBATCH
+.else
 IS_INTERACTIVE=	yes
 .endif
 
--- procmail-3.22_6.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4a71b9be.0707d00a.014f.fffff60c>