From owner-svn-src-all@FreeBSD.ORG Tue May 22 04:21:00 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E4485106566C; Tue, 22 May 2012 04:21:00 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 8CC978FC0A; Tue, 22 May 2012 04:21:00 +0000 (UTC) Received: by obcni5 with SMTP id ni5so12246720obc.13 for ; Mon, 21 May 2012 21:21:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=EAKC7rlJQgjjp+7gbxjkfaYhjZLmQsPayKfrp/cwlKI=; b=q1L6mLc3RRzk5JJGqKpCbZjQDj4G12lJvp7XhShgrleRuUfMeHa2bpcujolfdmaWYh lnQLPNjGQuGv3Se/2GYuHhPmEwJaL34mrvF8DppyOGJRZ+CA7HATSUKjk75/g7mpZ8tI S21Bhb8sRUwRLKz0jIkVpX0G5W/4AJPqC0MmSkp/Ca9LAEGP6ZWeBRL13JrzQMnH9jRb N8sVLg6dXRpVriBM0n2CNMF5Wbu5piNPh6ziREH8c920JuKogmmsAPQ50B253kRnOKr6 zgj8xzM+cWiQvEMcCBYSuSo3Tk+i4y49lZZwB3eB1859z9MopIUygDLHtZrknEFGM4xm ZNVg== MIME-Version: 1.0 Received: by 10.182.164.69 with SMTP id yo5mr21461850obb.17.1337660459855; Mon, 21 May 2012 21:20:59 -0700 (PDT) Received: by 10.76.153.72 with HTTP; Mon, 21 May 2012 21:20:59 -0700 (PDT) In-Reply-To: <201205220301.q4M31tJn084097@svn.freebsd.org> References: <201205220301.q4M31tJn084097@svn.freebsd.org> Date: Mon, 21 May 2012 21:20:59 -0700 Message-ID: From: Garrett Cooper To: Kevin Lo Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: 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 04:21:01 -0000 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: > =A0Remove redundant declaration of yyparse > > =A0Reported by: =A0tinderbox > > Modified: > =A0head/bin/expr/expr.y > > Modified: head/bin/expr/expr.y > =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/bin/expr/expr.y =A0 =A0 =A0 =A0Tue May 22 02:37:04 2012 =A0 =A0 = =A0 =A0(r235770) > +++ head/bin/expr/expr.y =A0 =A0 =A0 =A0Tue May 22 03:01:54 2012 =A0 =A0 = =A0 =A0(r235771) > @@ -74,7 +74,6 @@ int =A0 =A0 =A0 =A0 =A0 to_integer(struct val *); > =A0void =A0 =A0 =A0 =A0 =A0 to_string(struct val *); > =A0int =A0 =A0 =A0 =A0 =A0 =A0yyerror(const char *); > =A0int =A0 =A0 =A0 =A0 =A0 =A0yylex(void); > -int =A0 =A0 =A0 =A0 =A0 =A0yyparse(void); > > =A0%} 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