summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2003-05-13 14:15:07 (GMT)
committervincentdarley <vincentdarley>2003-05-13 14:15:07 (GMT)
commit1a797765fd2c54450127118828b06d81eb9f3d25 (patch)
treea300f3d456c16c82d02a5e75c0e2206c4c44a4fa /win/makefile.vc
parent3e73ccbf61f0a1fdf7a7483fadda334649bd0cae (diff)
downloadtk-1a797765fd2c54450127118828b06d81eb9f3d25.zip
tk-1a797765fd2c54450127118828b06d81eb9f3d25.tar.gz
tk-1a797765fd2c54450127118828b06d81eb9f3d25.tar.bz2
space in path bug fix
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index f5ac297..c14b5b5 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -12,7 +12,7 @@
# Copyright (c) 2001-2002 David Gravereaux.
#
#------------------------------------------------------------------------------
-# RCS: @(#) $Id: makefile.vc,v 1.70 2003/03/23 02:17:44 kennykb Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.71 2003/05/13 14:15:08 vincentdarley Exp $
#------------------------------------------------------------------------------
!if "$(MSVCDIR)" == ""
@@ -656,7 +656,7 @@ while {![eof $$f]} {
}
}
close $$f
-set f [open $(DOC_INSTALL_DIR:\=/)/tcl$(VERSION).cnt a]
+set f [open "$(DOC_INSTALL_DIR:\=/)/tcl$(VERSION).cnt" a]
puts $$f {:Include $(HLPBASE).cnt}
close $$f
<<