This is the mail archive of the insight@sources.redhat.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Cygwin & Insight... grrr.


i'm trying to reconstruct something that i had working before
and I'm following the instructions on the insight/cygwin.html page

using the script (below) to check out from CVS what I think
should work:

Problem: During the REVERT TCL step, I get various messages like this:

	 cvs server: cygtcl.m4 is no longer in the repository
	 cvs server: compat/getcwd.c is no longer in the repository
	 cvs server: doc/TclInitStubs.3 is no longer in the repository
	 cvs server: generic/patchlevel.h is no longer in the repository	

This continues for a large number of things.

Any clue what I'm doing wrong?

I got this to work earlier, but I did some house cleaning
and wiped out my previous copy, grrrrr....

-Duane.

----------------------------------------
#!/bin/bash

rm -rf src

echo "----- LOGIN ----"

cvs -z9 -d:pserver:anoncvs@sources.redhat.com:/cvs/src login

echo "----- MAIN CHECK OUT ---"

cvs -z9 -d:pserver:anoncvs@sources.redhat.com:/cvs/src co -r gdb_5_2-branch insight+dejagnu

echo "----- REVERT TCL ----"

cd src/tcl

cvs -q update -r gdb_5_1-2001-07-29-branch 

echo "----- REVERT TK ----"

cd ../tk

cvs -q update -r gdb_5_1-2001-07-29-branch

echo "----- REVERT ITCL ----"

cd ../itcl

cvs -q update -r gdb_5_1-2001-07-29-branch 

echo "----- REVERT LIBGUI ----"

cd ../libgui/src

cvs -q update -r gdb_5_1-2001-07-29-branch tkGraphCanvas.c tkCanvEdge.c

----------------------------------------


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]