From owner-svn-ports-all@freebsd.org Tue Aug 28 06:38:02 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42690108112E; Tue, 28 Aug 2018 06:38:02 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EDF6C7565B; Tue, 28 Aug 2018 06:38:01 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id E38401CECB; Tue, 28 Aug 2018 06:38:01 +0000 (UTC) Date: Tue, 28 Aug 2018 06:38:01 +0000 From: Alexey Dokuchaev To: Craig Leres Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r478274 - in head/dns/dsc: . files Message-ID: <20180828063801.GA75004@FreeBSD.org> References: <201808280045.w7S0jrIP048733@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201808280045.w7S0jrIP048733@repo.freebsd.org> User-Agent: Mutt/1.9.5 (2018-04-13) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Aug 2018 06:38:02 -0000 On Tue, Aug 28, 2018 at 12:45:53AM +0000, Craig Leres wrote: > New Revision: 478274 > URL: https://svnweb.freebsd.org/changeset/ports/478274 > > Log: > Update to 2.7.0. Add --with-extra-cflags=-I${PREFIX}/include > so configure finds pcap/sll.h. Add a rc.d script. Fix the path >From this description it looks like it should be LOCALBASE, not PREFIX. > GNU_CONFIGURE= yes > +CONFIGURE_ARGS+= --with-extra-cflags=-I${PREFIX}/include += is confusing since you're assigning, not appending to existing args (there are none). ./danfe