Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 02 Sep 1998 12:51:31 -0400 (EDT)
From:      John Baldwin <jobaldwi@vt.edu>
To:        Mike Knoll <knollm@lafcol.lafayette.edu>
Cc:        stable@FreeBSD.ORG
Subject:   RE: make buildworld fails
Message-ID:  <XFMail.980902125131.jobaldwi@vt.edu>
In-Reply-To: <Pine.SOL.3.96.980901163403.25845A-100000@lafcol.lafayette.edu>

next in thread | previous in thread | raw e-mail | index | archive | help
-----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



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