From owner-freebsd-questions@FreeBSD.ORG Thu Feb 2 16:52:03 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ED9D16A420 for ; Thu, 2 Feb 2006 16:52:03 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from rosebud.otenet.gr (rosebud.otenet.gr [195.170.0.94]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49B0A43D46 for ; Thu, 2 Feb 2006 16:52:01 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from flame.pc (aris.bedc.ondsl.gr [62.103.39.226]) by rosebud.otenet.gr (8.13.4/8.13.4/Debian-8) with SMTP id k12Gpwh1006912; Thu, 2 Feb 2006 18:51:59 +0200 Received: by flame.pc (Postfix, from userid 1001) id 66B64114A3; Thu, 2 Feb 2006 18:51:29 +0200 (EET) Date: Thu, 2 Feb 2006 18:51:29 +0200 From: Giorgos Keramidas To: "Chad Leigh -- Shire.Net LLC" Message-ID: <20060202165129.GB2986@flame.pc> References: <4B888618-0BC7-4ADF-83F9-71399DAEA9E4@shire.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4B888618-0BC7-4ADF-83F9-71399DAEA9E4@shire.net> Cc: freebsd-questions@freebsd.org Subject: Re: update just cvs? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2006 16:52:03 -0000 On 2006-02-02 01:07, "Chad Leigh -- Shire.Net LLC" wrote: > It seems cvs is part of the base system. Is it possible to just > build and install (properly) cvs after updating my source tree? If you have a userland and source tree that match each other, you can use something like this: # cd /usr/src/bnu/usr.bin/cvs # make cleandir && make cleandir # make obj && make all # make install This should update just the CVS related binaries. Note that the *REAL* source of cvs is under /usr/src/contrib/cvs though. Make sure that both /usr/src/contrib/cvs *AND* /usr/src/gnu/usr.bin/cvs are up to date before you try to build cvs. - Giorgos