From owner-svn-ports-head@freebsd.org Thu Sep 10 14:29:10 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E15DA00A68 for ; Thu, 10 Sep 2015 14:29:10 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 52737182D for ; Thu, 10 Sep 2015 14:29:10 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 8BA6E208CD for ; Thu, 10 Sep 2015 10:29:08 -0400 (EDT) Received: from web3 ([10.202.2.213]) by compute3.internal (MEProxy); Thu, 10 Sep 2015 10:29:08 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=/RCemPbck/wHQkK r68E2GxGOZIE=; b=bbmnL8T1ESF1MxaOdnkWQnMEoJYLBpfteP/dMsXm7e5xcM0 9haPPYDCN/iDQrV9coSmVvp1xV5Syo2s9pjiMzvX8gYD06Vok4E2BBRp4nnnA2nP S7+ROBFxZtXt/GIpjuAxrygWakDn5p4CQo2r0kOJVZ1me5AR8AtJ9be+8t0w= Received: by web3.nyi.internal (Postfix, from userid 99) id 61F5310D28C; Thu, 10 Sep 2015 10:29:08 -0400 (EDT) Message-Id: <1441895348.792175.379930857.4ED1E31D@webmail.messagingengine.com> X-Sasl-Enc: /YNtfOCNrbOPPFAeF0kltBjITNBnYoCrb0SgXaykGxFn 1441895348 From: Mark Felder To: Mathieu Arnold , Alexey Dokuchaev Cc: Jan Beich , Jason Unovitch , Chris Hutchinson , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-c76b43ce In-Reply-To: <540CF4611DCE6320FD0825C1@ogg.in.absolight.net> References: <201509100045.t8A0jQFW087140@repo.freebsd.org> <5736B81B323CE8E4C7EBF024@atuin.in.mat.cc> <20150910075818.GA95637@FreeBSD.org> <540CF4611DCE6320FD0825C1@ogg.in.absolight.net> Subject: Re: svn commit: r396547 - in head/textproc: . smi Date: Thu, 10 Sep 2015 09:29:08 -0500 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Thu, 10 Sep 2015 14:29:10 -0000 On Thu, Sep 10, 2015, at 06:26, Mathieu Arnold wrote: > > > +--On 10 septembre 2015 07:58:18 +0000 Alexey Dokuchaev > > wrote: > | On Thu, Sep 10, 2015 at 09:46:06AM +0200, Mathieu Arnold wrote: > |> +--On 10 septembre 2015 03:37:23 +0200 Jan Beich > |> wrote: > |> | Jason Unovitch writes: > |> | > |> |> +post-patch: > |> |> + ${REINPLACE_CMD} -e 's|^CC = .*|CC = ${CC}|' \ > |> | > |> | CC is defined by default to a sane value in both GNU and BSD make. > |> | One can do '/^CC/d' but see below for better way. > |> > |> The line was: > |> > |> CC = something > |> not > |> CC ?= something > |> > |> You can't overwrite CC = something from the command line, or the env. > | > | $ cat foo > | FOO = foo > | > | all: > | @echo ${FOO} > | $ make -f foo > | foo > | $ env FOO=bar make -f foo > | foo > | $ make -f foo FOO=bar > | bar > > I always assumed it was not the case, and it was the reason portscout > would > not detect new versions of BIND, because it's fiddeling with the url > where > it should be changing PORTVERSION... > Hmm, I've learned something new as well now... Thanks Alexey.