diff options
author | hobbs <hobbs> | 2003-03-01 01:22:46 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-03-01 01:22:46 (GMT) |
commit | 7f8d917032c5618327a7308cfc1374999fb1dab3 (patch) | |
tree | 71b33566c3c72b6d76ec56fd894ba971f4cf1c40 /win/rules.vc | |
parent | 9c2c8ce280179589948f246399330d3954b2ca28 (diff) | |
download | tcl-7f8d917032c5618327a7308cfc1374999fb1dab3.zip tcl-7f8d917032c5618327a7308cfc1374999fb1dab3.tar.gz tcl-7f8d917032c5618327a7308cfc1374999fb1dab3.tar.bz2 |
* win/configure:
* win/configure.in: check for 'g' for debug build type, not 'd'.
* win/rules.vc (DBGX): correct to use 'g' for nmake win makefile
to match the cygwin makefile for debug builds. [Bug #635107]
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/rules.vc b/win/rules.vc index 583d8e9..3cc84b0 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -10,7 +10,7 @@ # Copyright (c) 2001-2002 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: rules.vc,v 1.10 2003/01/05 00:44:24 davygrvy Exp $ +# RCS: @(#) $Id: rules.vc,v 1.11 2003/03/01 01:22:46 hobbs Exp $ #------------------------------------------------------------------------------ !ifndef _RULES_VC @@ -192,15 +192,15 @@ TCL_USE_STATIC_PACKAGES = 0 # by accident. #---------------------------------------------------------- -SUFX = tsdx +SUFX = tsgx !if $(DEBUG) BUILDDIRTOP = Debug -DBGX = d +DBGX = g !else BUILDDIRTOP = Release DBGX = -SUFX = $(SUFX:d=) +SUFX = $(SUFX:g=) !endif TMP_DIRFULL = .\$(BUILDDIRTOP)\$(PROJECT)_ThreadedDynamicStaticX |