From owner-freebsd-stable Wed Sep 2 09:51:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21452 for freebsd-stable-outgoing; Wed, 2 Sep 1998 09:51:44 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from quackerjack.cc.vt.edu (quackerjack.cc.vt.edu [198.82.160.250]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21442 for ; Wed, 2 Sep 1998 09:51:37 -0700 (PDT) (envelope-from jobaldwi@vt.edu) Received: from sable.cc.vt.edu (sable.cc.vt.edu [128.173.16.30]) by quackerjack.cc.vt.edu (8.8.8/8.8.8) with ESMTP id MAA08665; Wed, 2 Sep 1998 12:57:00 -0400 (EDT) Received: from phoenix.phoenixos.com (jobaldwi.campus.vt.edu [198.82.67.63]) by sable.cc.vt.edu (8.8.8/8.8.8) with ESMTP id MAA26178; Wed, 2 Sep 1998 12:50:16 -0400 (EDT) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Wed, 02 Sep 1998 12:51:31 -0400 (EDT) Organization: Virginia Tech From: John Baldwin To: Mike Knoll Subject: RE: make buildworld fails Cc: stable@FreeBSD.ORG Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- On 01-Sep-98 Mike Knoll wrote: > After a few months of neglect, I tried to upgrade my box to -stable. > > When compiling, I got the errors attached at the end of this email. > > I understand cvsup holds changes, and comments on what was changed. Is > there any way to get a list of all changes when cvsup'ing? > > Like, if lpr was changed, have it tell me lpr was changed because it > didn't do something correctly. > > Thanks, > Mike Use a script to run cvsup and redirect the output to a file that you can look at later. I use the script below to update my sources: #!/bin/csh # #Uses CVSup to update the /usr/src tree cd /root set logfile='cvsup-src_'`date "+%y%m%d"`'.log' echo "--------------------------------------" | tee $logfile echo "CVSup started at "`date "+%T on %D"` | tee -a $logfile echo "--------------------------------------" | tee -a $logfile echo " " | tee -a $logfile /usr/local/bin/cvsup stable-supfile -g -L 2 $* |& tee -a $logfile echo "--------------------------------------" | tee -a $logfile echo "CVSup finished at "`date "+%T on %D"` | tee -a $logfile echo "--------------------------------------" | tee -a $logfile Then I can look at the log file and see what files where changed. - --- John Baldwin - -- jobaldwi@vt.edu -- jbaldwin@freedomnet.com -- ---- http://www.freedomnet.com/~jbaldwin/ ---- "I waited for the Lord on high/I waited and He heard my cry." - Petra -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQB1AwUBNe111IjYza302vYpAQGSCwMAkvbhspgvwkCHn9GHFvkn/z/7gkP09yY/ ggMSb0akJXOnwlKqv6aZ3d05+Ac+t5IQ23qXESY9vXmCudGoEFjzdpG0+v33YPl1 AaJSC/lcXhstjt6KnU/VraSfBkDE4Seq =Ho1Q -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message