From owner-freebsd-bugs Fri Jan 8 05:54:12 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA26362 for freebsd-bugs-outgoing; Fri, 8 Jan 1999 05:54:12 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from lamb.sas.com (lamb.sas.com [192.35.83.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA26345; Fri, 8 Jan 1999 05:54:09 -0800 (PST) (envelope-from jwd@unx.sas.com) Received: from mozart (mozart.unx.sas.com [192.58.184.8]) by lamb.sas.com (8.9.1/8.9.1) with SMTP id IAA09240; Fri, 8 Jan 1999 08:53:27 -0500 (EST) Received: from bb01f39.unx.sas.com by mozart (5.65c/SAS/Domains/5-6-90) id AA05380; Fri, 8 Jan 1999 08:53:26 -0500 Received: (from jwd@localhost) by bb01f39.unx.sas.com (8.9.1/8.9.1) id IAA39632; Fri, 8 Jan 1999 08:53:26 -0500 (EST) (envelope-from jwd) From: "John W. DeBoskey" Message-Id: <199901081353.IAA39632@bb01f39.unx.sas.com> Subject: Re: Bug in make affecting release crunchs In-Reply-To: <199901081218.HAA02256@lakes.dignus.com> from Thomas David Rivers at "Jan 8, 1999 7:18:50 am" To: rivers@dignus.com (Thomas David Rivers) Date: Fri, 8 Jan 1999 08:53:26 -0500 (EST) Cc: jkh@zippy.cdrom.com, jwd@unx.sas.com, freebsd-bugs@FreeBSD.ORG, freebsd-current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Gee... Silly me... Dave is correct: /usr/src/usr.bin/make/parse.c and the diff again: --------------------------------------------------------------- --- /usr/src/usr.bin/make/parse.c.orig Sun May 31 02:23:33 1998 +++ /usr/src/usr.bin/make/parse.c Fri Jan 8 03:05:23 1999 @@ -1412,8 +1412,10 @@ default: #ifdef SUNSHCMD while (*opc != ':') - if (--opc < line) + if (--opc < line) { + ++opc; break; + } if (strncmp(opc, ":sh", 3) == 0) { type = VAR_SHELL; --------------------------------------------------------------- > > > Basically, Parse_IsVar() in parse.c contains the following > > > code snippet: > > > > I can't parse this since I don't even know what directory you're in or > > what file you're talking about. parse.c, yes. WHAT parse.c? :-) > > > > - Jordan > > Jordan - > > I believe he's talking about the make(1) program, > in particular, /usr/src/usr.bin/make/parse.c > > - Dave Rivers - > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message