This is the mail archive of the insight@sourceware.org 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]

Problem with latest cygwin tcl package


I am having a problem with a tcl script (shown below) in that it hangs
when executed. Currently, I have the latest cygwin code downloaded. When
I run the tcl script with the latest tcl/tk package (20080420-1) the
script hangs on executing the svn command. This occurs on both a
WindowsXP and Windows2003 system. When I install tcl/tk version
20060202-1, the script executes correctly. Any thoughts on how to
further debug this?
 
 
Thanks
Dave





#!/bin/tclsh
# 8/23/08 - This code does not run under cygwin tcl version 20080420-1.
I had to
# back off to a 2006 version (previous version)


set tagDir "hw_tags";
set baseName "sm_phy";
set projDir "hw2";
set pjtLabel "2_1_1_3";
set svnCommandLine "catch \{exec svn copy -m applying_tag
svn://172.20.10.34/svn/proj9100/${projDir}
svn://172.20.10.34/svn/proj9100/${tagDir}/${baseName}_${pjtLabel}\}
result";

puts $svnCommandLine;

eval $svnCommandLine;

puts $result;


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