From owner-svn-ports-head@FreeBSD.ORG Sun May 26 11:28:44 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id C1549D1F; Sun, 26 May 2013 11:28:44 +0000 (UTC) Date: Sun, 26 May 2013 11:28:44 +0000 From: Alexey Dokuchaev To: Pietro Cerutti Subject: Re: svn commit: r319044 - head/graphics/togl Message-ID: <20130526112844.GA66781@FreeBSD.org> References: <201305251106.r4PB60W3082544@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201305251106.r4PB60W3082544@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: Sun, 26 May 2013 11:28:44 -0000 On Sat, May 25, 2013 at 11:06:00AM +0000, Pietro Cerutti wrote: > New Revision: 319044 > URL: http://svnweb.freebsd.org/changeset/ports/319044 > > Log: > - Append to instead of overwrite CONFIGURE_ARGS > > @@ -23,7 +19,7 @@ USE_TK_BUILD= 84+ > USE_TK= 84+ > USE_GMAKE= yes > GNU_CONFIGURE= yes > -CONFIGURE_ARGS= --with-tk=${TK_LIBDIR} \ > +CONFIGURE_ARGS+=--with-tk=${TK_LIBDIR} \ > --with-tcl=${TCL_LIBDIR} \ > --with-tclinclude=${TCL_INCLUDEDIR} What was wrong with =, that is, overwriting an empty variable? Appending can be required for slave ports, for example, but to me it merely makes things more confusing here (unless I'm missing something -- but then again, commit log did not mention it). ./danfe