Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jan 1999 08:53:26 -0500 (EST)
From:      "John W. DeBoskey" <jwd@unx.sas.com>
To:        rivers@dignus.com (Thomas David Rivers)
Cc:        jkh@zippy.cdrom.com, jwd@unx.sas.com, freebsd-bugs@FreeBSD.ORG, freebsd-current@FreeBSD.ORG
Subject:   Re: Bug in make affecting release crunchs
Message-ID:  <199901081353.IAA39632@bb01f39.unx.sas.com>
In-Reply-To: <199901081218.HAA02256@lakes.dignus.com> from Thomas David Rivers at "Jan 8, 1999  7:18:50 am"

next in thread | previous in thread | raw e-mail | index | archive | help
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-current" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199901081353.IAA39632>