From owner-svn-src-all@FreeBSD.ORG Tue May 22 06:06:18 2012 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EDC4106564A; Tue, 22 May 2012 06:06:18 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from ns.kevlo.org (kevlo.org [220.128.136.52]) by mx1.freebsd.org (Postfix) with ESMTP id 26AD28FC14; Tue, 22 May 2012 06:06:17 +0000 (UTC) Received: from [127.0.0.1] (git.kevlo.org [220.128.136.52]) by ns.kevlo.org (8.14.5/8.14.5) with ESMTP id q4M667tS011911; Tue, 22 May 2012 14:06:07 +0800 (CST) (envelope-from kevlo@FreeBSD.org) Message-ID: <1337666770.2289.7.camel@nsl> From: Kevin Lo To: Baptiste Daroussin Date: Tue, 22 May 2012 14:06:10 +0800 In-Reply-To: <20120522054113.GL63744@ithaqua.etoilebsd.net> References: <201205220301.q4M31tJn084097@svn.freebsd.org> <20120522054113.GL63744@ithaqua.etoilebsd.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Cc: Garrett Cooper , svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, Baptiste Daroussin Subject: Re: svn commit: r235771 - head/bin/expr X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 06:06:18 -0000 Baptiste Daroussin wrote: > On Mon, May 21, 2012 at 09:20:59PM -0700, Garrett Cooper wrote: > > On Mon, May 21, 2012 at 8:01 PM, Kevin Lo wrote: > > > Author: kevlo > > > Date: Tue May 22 03:01:54 2012 > > > New Revision: 235771 > > > URL: http://svn.freebsd.org/changeset/base/235771 > > > > > > Log: > > > Remove redundant declaration of yyparse > > > > > > Reported by: tinderbox > > > > > > Modified: > > > head/bin/expr/expr.y > > > > > > Modified: head/bin/expr/expr.y > > > ============================================================================== > > > --- head/bin/expr/expr.y Tue May 22 02:37:04 2012 (r235770) > > > +++ head/bin/expr/expr.y Tue May 22 03:01:54 2012 (r235771) > > > @@ -74,7 +74,6 @@ int to_integer(struct val *); > > > void to_string(struct val *); > > > int yyerror(const char *); > > > int yylex(void); > > > -int yyparse(void); > > > > > > %} > > > > There are a lot more than just this unfortunately (I'm working on > > a complete patchset). > > This breakage really makes me think that yacc isn't being built at > > the right time or pathed properly in the build system. > > Thanks, > > -Garrett > > _______________________________________________ > > svn-src-all@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/svn-src-all > > To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" > > The complete patch set is there: > http://people.freebsd.org/~bapt/fix-after-yacc.diff > (clang seems to not detect those redudant warning, while gcc complains) > > I'm waiting for review before committing) > > Thanks for this fix I'll remove it from my patchset Looks good to me. Thanks for cooking up the patchset. > regards, > Bapt Kevin