From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 16 16:10:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B3781065673 for ; Fri, 16 Mar 2012 16:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE0628FC12 for ; Fri, 16 Mar 2012 16:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2GGA1IQ001042 for ; Fri, 16 Mar 2012 16:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2GGA1Tb001041; Fri, 16 Mar 2012 16:10:01 GMT (envelope-from gnats) Resent-Date: Fri, 16 Mar 2012 16:10:01 GMT Resent-Message-Id: <201203161610.q2GGA1Tb001041@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Greg Larkin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D347A106564A; Fri, 16 Mar 2012 16:02:05 +0000 (UTC) (envelope-from glarkin@sourcehosting.net) Received: from mail1.sourcehosting.net (mail1.sourcehosting.net [74.205.51.45]) by mx1.freebsd.org (Postfix) with ESMTP id AA5768FC15; Fri, 16 Mar 2012 16:02:05 +0000 (UTC) Received: from 68-189-245-235.dhcp.oxfr.ma.charter.com ([68.189.245.235] helo=imac.entropy.prv) by mail1.sourcehosting.net with esmtp (Exim 4.73 (FreeBSD)) (envelope-from ) id 1S8Za9-000OTk-2g; Fri, 16 Mar 2012 12:01:59 -0400 Received: from sourcehosting.net (unknown [192.168.216.128]) by imac.entropy.prv (Postfix) with SMTP id A176A100B8D5; Fri, 16 Mar 2012 12:00:44 -0400 (EDT) Received: (nullmailer pid 20844 invoked by uid 1001); Fri, 16 Mar 2012 16:00:44 -0000 Message-Id: <1331913644.433334.20843.nullmailer@sourcehosting.net> Date: Fri, 16 Mar 2012 12:00:44 -0400 From: Greg Larkin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: rea@FreeBSD.org Subject: ports/166180: [PATCH] mail/exim: configure phase fails with CFLAGS containing a comma X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Mar 2012 16:10:02 -0000 >Number: 166180 >Category: ports >Synopsis: [PATCH] mail/exim: configure phase fails with CFLAGS containing a comma >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: Fri Mar 16 16:10:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Greg Larkin >Release: FreeBSD 8.2-RELEASE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD amd64_82.localdomain 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 >Description: Changed the sed delimiter character from a comma to a vertical bar to avoid a problem when CFLAGS contains a comma. Port maintainer (rea@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_4 (mode: change, diff: CVS) >How-To-Repeat: Add this to /etc/make.conf and attempt to build the port: WITH_OPENSSL_BASE=yes USE_OPENSSL_RPATH=yes >Fix: --- exim-4.77_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/mail/exim/Makefile,v retrieving revision 1.261 diff -u -r1.261 Makefile --- Makefile 14 Feb 2012 12:45:21 -0000 1.261 +++ Makefile 16 Mar 2012 15:56:25 -0000 @@ -188,7 +188,7 @@ EXTRA_PATCHES+= `${FIND} ${PATCHDIR} -name 'wishlist-*.patch'` .endif -SEDLIST+= -e 's,XX_CFLAGS_XX,${CFLAGS},' \ +SEDLIST+= -e 's|XX_CFLAGS_XX|${CFLAGS}|' \ -e 's,XX_PREFIX_XX,${PREFIX},' \ -e 's,XX_LOCALBASE_XX,${LOCALBASE},' \ -e 's,XX_LOG_FILE_PATH_XX,${LOG_FILE_PATH},' \ --- exim-4.77_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: