From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5176 invoked by alias); 17 Oct 2003 14:15:13 -0000 Mailing-List: contact insight-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 5135 invoked from network); 17 Oct 2003 14:15:11 -0000 Received: from unknown (HELO opal.franklin.com) (63.88.59.84) by sources.redhat.com with SMTP; 17 Oct 2003 14:15:11 -0000 Received: from europa.franklin.com (europa [192.9.200.131]) by opal.franklin.com (8.12.10+Sun/8.12.10) with ESMTP id h9HEF90m003080 for ; Fri, 17 Oct 2003 10:15:09 -0400 (EDT) Received: (from duane@localhost) by europa.franklin.com (8.11.6/8.9.3) id h9HEF9e05307; Fri, 17 Oct 2003 10:15:09 -0400 Date: Fri, 17 Oct 2003 14:15:00 -0000 Message-Id: <200310171415.h9HEF9e05307@europa.franklin.com> From: Duane Ellis To: insight@sources.redhat.com Subject: Cygwin & Insight... grrr. Reply-to: duane@franklin.com X-SW-Source: 2003-q4/txt/msg00042.txt.bz2 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 ----------------------------------------