From owner-svn-ports-head@FreeBSD.ORG Fri Aug 2 07:51:07 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 37149655; Fri, 2 Aug 2013 07:51:07 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-we0-x22d.google.com (mail-we0-x22d.google.com [IPv6:2a00:1450:400c:c03::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3A100297D; Fri, 2 Aug 2013 07:51:06 +0000 (UTC) Received: by mail-we0-f173.google.com with SMTP id x55so243029wes.32 for ; Fri, 02 Aug 2013 00:51:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=zVoOGJg1pqZQswPkpSxjayfIrJrSUuurfksiHNuADes=; b=xCNtBoxtDoPks9/hQnVW6laj+DNjTuOMLnoy10TNPg3r4MSkD3paj87ilHEj54B1ps 2dMHbeI7gaS7Hr23PUSi3UD6Q6M8LVZuRn4eTOrgvtHNz3PODQ5KM3nuc5ik86t3sZIW cn5cADo+JMbWDMV+71jFBM5PiONf/ootwx+Gkm/+lslSN3pnTb5k52V0TXdHJfOV7D2h X8htpMHdqzNXlrRCyElWlqvv6IL1z+/eGk5YN8Kp+0cDSDweW2nne9QdxxvLs7zuBG6g Om0GVCespo5QcJYhaq1LSMWNwoiZ0FMSJ/Glsu0pX9rrzYRkqDPCArA+91ZfbRP6JmNy Nlmw== X-Received: by 10.180.94.69 with SMTP id da5mr984701wib.3.1375429864526; Fri, 02 Aug 2013 00:51:04 -0700 (PDT) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id u9sm1511057wif.6.2013.08.02.00.51.03 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 02 Aug 2013 00:51:03 -0700 (PDT) Sender: Baptiste Daroussin Date: Fri, 2 Aug 2013 09:51:01 +0200 From: Baptiste Daroussin To: Antoine Brodin Subject: Re: svn commit: r324150 - head/astro/aa Message-ID: <20130802075101.GB18976@ithaqua.etoilebsd.net> References: <201308020748.r727m8hd036121@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="R3G7APHDIzY6R/pk" Content-Disposition: inline In-Reply-To: <201308020748.r727m8hd036121@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Aug 2013 07:51:07 -0000 --R3G7APHDIzY6R/pk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 02, 2013 at 07:48:08AM +0000, Antoine Brodin wrote: > Author: antoine > Date: Fri Aug 2 07:48:07 2013 > New Revision: 324150 > URL: http://svnweb.freebsd.org/changeset/ports/324150 >=20 > Log: > Fix without gcc >=20 > Modified: > head/astro/aa/Makefile >=20 > Modified: head/astro/aa/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/astro/aa/Makefile Fri Aug 2 07:32:02 2013 (r324149) > +++ head/astro/aa/Makefile Fri Aug 2 07:48:07 2013 (r324150) > @@ -32,7 +32,7 @@ post-patch: > @${REINPLACE_CMD} \ > 's|%%PREFIX%%|${PREFIX}|g ; s|%%DATADIR%%|${DATADIR}|g' \ > ${WRKSRC}/kfiles.c > - @${REINPLACE_CMD} 's|CFLAGS=3D -O2|CFLAGS+=3D|' ${WRKSRC}/makefile > + @${REINPLACE_CMD} 's|CFLAGS=3D -O2|CFLAGS+=3D| ; s|CC=3D|CC?=3D|' ${WR= KSRC}/makefile Why not using MAKE_ARGS=3D CC=3D${CC} here? That is how make(1) is designed to work, All variable are always overwritab= le by args, ?=3D is only to allow to overwrite from env. regards, Bapt --R3G7APHDIzY6R/pk Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlH7ZOUACgkQ8kTtMUmk6EzZPQCfRrPY+kpQEc4IUJRIH8oAA4nw ZNoAoKn1Ej5TNJ0LDPBQ1hM+wA4I7QIl =81XY -----END PGP SIGNATURE----- --R3G7APHDIzY6R/pk--