diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2017-12-26 03:33:35 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2017-12-26 03:33:35 (GMT) |
commit | b067895cc442b431d0160a6c46a7037454e9ddc2 (patch) | |
tree | 0a61ae15c7ce835741b83554d013f65726a4abe5 /win | |
parent | e754f70125cea968e33d95955fdad32a191b6210 (diff) | |
parent | 0b3bf9e30d94174dda9c8389a11d3cacf05eea85 (diff) | |
download | tcl-b067895cc442b431d0160a6c46a7037454e9ddc2.zip tcl-b067895cc442b431d0160a6c46a7037454e9ddc2.tar.gz tcl-b067895cc442b431d0160a6c46a7037454e9ddc2.tar.bz2 |
Merged core-8-branch: replace ifdef TCLDIR with compare against empty string
Diffstat (limited to 'win')
-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:/=\)
|