diff options
author | patthoyts <patthoyts@noemail.net> | 2007-11-28 02:05:23 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@noemail.net> | 2007-11-28 02:05:23 (GMT) |
commit | 805b5fdcd7f21d54a4167c40fa7d5ae10469807b (patch) | |
tree | 8562b41a2eeec83e110d8417b075905c42ef4263 | |
parent | bb3b4d6bdd648eb5b72ec2487963527859a7b172 (diff) | |
download | tk-805b5fdcd7f21d54a4167c40fa7d5ae10469807b.zip tk-805b5fdcd7f21d54a4167c40fa7d5ae10469807b.tar.gz tk-805b5fdcd7f21d54a4167c40fa7d5ae10469807b.tar.bz2 |
(bug 1835052) Fix tidy target to remove tktest rather than tcltest
FossilOrigin-Name: 7e292ff7d70ff2f932060b1790f675c272d13df5
-rw-r--r-- | win/makefile.vc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index ee94d7c..b4e470d 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2004 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.113 2007/11/17 21:47:02 patthoyts Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.114 2007/11/28 02:05:24 patthoyts Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -938,8 +938,8 @@ tidy: @if exist $(TKIMPLIB) del $(TKIMPLIB) @echo Removing $(WISH) ... @if exist $(WISH) del $(WISH) - @echo Removing $(TCLTEST) ... - @if exist $(TCLTEST) del $(TCLTEST) + @echo Removing $(TKTEST) ... + @if exist $(TKTEST) del $(TKTEST) @echo Removing $(TKSTUBLIB) ... @if exist $(TKSTUBLIB) del $(TKSTUBLIB) |