From owner-cvs-usrbin Sun Oct 6 08:17:39 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA23973 for cvs-usrbin-outgoing; Sun, 6 Oct 1996 08:17:39 -0700 (PDT) Received: from fly.HiWAAY.net (root@fly.HiWAAY.net [204.214.4.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id IAA23919; Sun, 6 Oct 1996 08:17:20 -0700 (PDT) Received: from bonsai.hiwaay.net by fly.HiWAAY.net; (8.7.5/1.1.8.2/21Sep95-1003PM) id KAA06196; Sun, 6 Oct 1996 10:16:57 -0500 (CDT) Message-ID: <3257CD5B.5DC51F25@hiwaay.net> Date: Sun, 06 Oct 1996 10:16:43 -0500 From: Steve Price X-Mailer: Mozilla 2.02 (X11; I; FreeBSD 2.2-CURRENT i386) MIME-Version: 1.0 To: "Rodney W. Grimes" CC: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-usrbin@freefall.freebsd.org Subject: Re: cvs commit: src/usr.bin/make/lst.lib lstForEachFrom.c lstInt.h src/usr.bin/make util.c Makefile arch.c buf.c buf.h compat.c con References: <199610061506.IAA01658@GndRsh.aac.dev.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Rodney W. Grimes wrote: > > Hummm... I would feel okay if that was rcs related diffs, but the sccsid's > are not used by either the NetBSD or FreeBSD project, so they should be > identical, as you have in effect imported the code that they did from some > place to change the sccs-id's. > > -- > Rod Grimes rgrimes@gndrsh.aac.dev.com > Accurate Automation Company Reliable computers for FreeBSD You are right. I should have said that the diffs are rcsid-related. Here is an example diff: steve[/tmp/src/usr.bin/make]$ diff -u cond.c ../Nmake/cond.c --- cond.c Sat Oct 5 21:34:00 1996 +++ ../Nmake/cond.c Tue Oct 1 13:39:46 1996 @@ -1,3 +1,5 @@ +/* $NetBSD: cond.c,v 1.6 1995/06/14 15:18:58 christos Exp $ */ + /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. * Copyright (c) 1988, 1989 by Adam de Boor @@ -37,7 +39,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)cond.c 8.2 (Berkeley) 1/2/94"; +#else +static char rcsid[] = "$NetBSD: cond.c,v 1.6 1995/06/14 15:18:58 christos Exp $"; +#endif #endif /* not lint */ /*- steve[/tmp/src/usr.bin/make]$ Steve