diff options
author | davygrvy <davygrvy@pobox.com> | 2004-03-03 09:10:11 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2004-03-03 09:10:11 (GMT) |
commit | b39e1c2628145e43eb221614e0328123c3fff3f8 (patch) | |
tree | 1cca88be74fd06db0a5ea9fc450d542b7e06fd19 /win | |
parent | 7740b0e06748d320d01e78ed1b37b6af57303ed2 (diff) | |
download | tcl-b39e1c2628145e43eb221614e0328123c3fff3f8.zip tcl-b39e1c2628145e43eb221614e0328123c3fff3f8.tar.gz tcl-b39e1c2628145e43eb221614e0328123c3fff3f8.tar.bz2 |
default environment variable for VC++ is %MSDevDir% not %MSVCDir%,
although vcvars32.bat sets both.
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 1388309..e9f331d 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,10 +12,10 @@ # Copyright (c) 2001-2004 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.122 2004/02/08 01:38:33 davygrvy Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.123 2004/03/03 09:10:11 davygrvy Exp $ #------------------------------------------------------------------------------ -!if "$(MSVCDIR)" == "" +!if "$(MSDEVDIR)" == "" MSG = ^ You'll need to run vcvars32.bat from Developer Studio, first, to setup^ the environment. Jump to this line to read the new instructions. |