diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2017-12-26 03:32:05 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2017-12-26 03:32:05 (GMT) |
commit | 0b3bf9e30d94174dda9c8389a11d3cacf05eea85 (patch) | |
tree | 9f9a4f903a6de483c6ece1ebf46ffcac35d0df1c | |
parent | cae732bd8d781efd44d74b1db129d5969ca76182 (diff) | |
parent | 82cd662f00327eb89fa2951c3f343112b6150e36 (diff) | |
download | tcl-0b3bf9e30d94174dda9c8389a11d3cacf05eea85.zip tcl-0b3bf9e30d94174dda9c8389a11d3cacf05eea85.tar.gz tcl-0b3bf9e30d94174dda9c8389a11d3cacf05eea85.tar.bz2 |
Merged core-8-6-branch: replace ifdef TCLDIR with compare against empty string
-rw-r--r-- | win/rules-ext.vc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/rules-ext.vc b/win/rules-ext.vc index 58c70fa..531e070 100644 --- a/win/rules-ext.vc +++ b/win/rules-ext.vc @@ -35,7 +35,7 @@ macro to the name of the project makefile. !endif
# First locate the Tcl directory that we are working with.
-!ifdef TCLDIR
+!if "$(TCLDIR)" != ""
_RULESDIR = $(TCLDIR:/=\)
|