From owner-cvs-user Mon Aug 4 20:48:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA16880 for cvs-user-outgoing; Mon, 4 Aug 1997 20:48:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA16848; Mon, 4 Aug 1997 20:48:10 -0700 (PDT) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id UAA05544; Mon, 4 Aug 1997 20:46:24 -0700 (PDT) Date: Mon, 4 Aug 1997 20:46:24 -0700 (PDT) Message-Id: <199708050346.UAA05544@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile Sender: owner-cvs-user@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami 1997/08/04 20:46:24 PDT Modified files: (Branch: RELENG_2_2) . Makefile Log: This patch splits "world" into two parts, "buildworld" and "installworld", which can be run together or separately (or even on different machines). The "buildworld" target does not install anything outside /usr/obj; you still need to be root to run it (the default install rules want to set the ownership, etc.), but it's now possible to upgrade a bunch of -stable machines by running "make buildworld" on a 2.1.5 NFS server and then running "make installworld" on each of the clients, while not compromising the stability of the server at all. Reviewed by: too many many people to list here, special thanks to bde Revision Changes Path 1.109.2.9 +192 -91 src/Makefile From owner-cvs-user Mon Aug 4 20:51:49 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA17160 for cvs-user-outgoing; Mon, 4 Aug 1997 20:51:49 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA17134; Mon, 4 Aug 1997 20:51:35 -0700 (PDT) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id UAA05652; Mon, 4 Aug 1997 20:49:49 -0700 (PDT) Date: Mon, 4 Aug 1997 20:49:49 -0700 (PDT) Message-Id: <199708050349.UAA05652@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: cvs commit: src Makefile src/share/mk bsd.lib.mk bsd.prog.mk Sender: owner-cvs-user@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami 1997/08/04 20:49:49 PDT Modified files: . Makefile share/mk bsd.lib.mk bsd.prog.mk Log: Merge buildworld/installworld patch to Makefile from RELENG_2_2. Patch a couple *.mk files to enable -current world building on really old machines (e.g., 2.1.5). Reviewed by: too many many people to list here, special thanks to bde Revision Changes Path 1.133 +191 -85 src/Makefile 1.60 +3 -1 src/share/mk/bsd.lib.mk 1.54 +2 -2 src/share/mk/bsd.prog.mk From owner-cvs-user Mon Aug 4 21:30:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA19099 for cvs-user-outgoing; Mon, 4 Aug 1997 21:30:20 -0700 (PDT) Received: from earth.mat.net (root@earth.mat.net [206.246.122.2]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id VAA19092; Mon, 4 Aug 1997 21:30:13 -0700 (PDT) Received: from Journey2.mat.net (journey2.mat.net [206.246.122.116]) by earth.mat.net (8.6.12/8.6.12) with SMTP id AAA24749; Tue, 5 Aug 1997 00:30:10 -0400 Date: Tue, 5 Aug 1997 00:30:27 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@Journey2.mat.net To: Satoshi Asami cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: Re: cvs commit: src Makefile In-Reply-To: <199708050346.UAA05544@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-user@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Mon, 4 Aug 1997, Satoshi Asami wrote: > asami 1997/08/04 20:46:24 PDT > > Modified files: (Branch: RELENG_2_2) > . Makefile Gee, that's just fine! Can you do it again, to the tune of "current"? > Log: > This patch splits "world" into two parts, "buildworld" and > "installworld", which can be run together or separately (or even on > different machines). The "buildworld" target does not install > anything outside /usr/obj; you still need to be root to run it (the > default install rules want to set the ownership, etc.), but it's now > possible to upgrade a bunch of -stable machines by running "make > buildworld" on a 2.1.5 NFS server and then running "make installworld" > on each of the clients, while not compromising the stability of the > server at all. > > Reviewed by: too many many people to list here, special thanks to bde > > Revision Changes Path > 1.109.2.9 +192 -91 src/Makefile > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-cvs-user Mon Aug 4 23:44:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA24182 for cvs-user-outgoing; Mon, 4 Aug 1997 23:44:50 -0700 (PDT) Received: from critter.dk.tfs.com ([140.145.230.252]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA24132; Mon, 4 Aug 1997 23:44:31 -0700 (PDT) Received: from critter.dk.tfs.com (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.6/8.8.5) with ESMTP id HAA00873; Tue, 5 Aug 1997 07:49:14 +0200 (CEST) To: Satoshi Asami cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG, cvs-share@FreeBSD.ORG From: Poul-Henning Kamp Subject: Re: cvs commit: src Makefile src/share/mk bsd.lib.mk bsd.prog.mk In-reply-to: Your message of "Mon, 04 Aug 1997 20:49:49 PDT." <199708050349.UAA05652@freefall.freebsd.org> Date: Tue, 05 Aug 1997 07:49:14 +0200 Message-ID: <871.870760154@critter.dk.tfs.com> Sender: owner-cvs-user@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Bravo! In message <199708050349.UAA05652@freefall.freebsd.org>, Satoshi Asami writes: >asami 1997/08/04 20:49:49 PDT > > Modified files: > . Makefile > share/mk bsd.lib.mk bsd.prog.mk > Log: > Merge buildworld/installworld patch to Makefile from RELENG_2_2. Patch > a couple *.mk files to enable -current world building on really old > machines (e.g., 2.1.5). > > Reviewed by: too many many people to list here, special thanks to bde > > Revision Changes Path > 1.133 +191 -85 src/Makefile > 1.60 +3 -1 src/share/mk/bsd.lib.mk > 1.54 +2 -2 src/share/mk/bsd.prog.mk -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Power and ignorance is a disgusting cocktail. From owner-cvs-user Sat Aug 9 07:39:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA26116 for cvs-user-outgoing; Sat, 9 Aug 1997 07:39:07 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA26049; Sat, 9 Aug 1997 07:36:55 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id HAA15660; Sat, 9 Aug 1997 07:36:21 -0700 (PDT) Date: Sat, 9 Aug 1997 07:36:21 -0700 (PDT) Message-Id: <199708091436.HAA15660@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src README Sender: owner-cvs-user@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 1997/08/09 07:36:21 PDT Modified files: . README Log: Note that /etc is not installed by world target either. Revision Changes Path 1.11 +4 -3 src/README