diff options
author | fbonnet <fredericbonnet@free.fr> | 2018-05-10 13:47:37 (GMT) |
---|---|---|
committer | fbonnet <fredericbonnet@free.fr> | 2018-05-10 13:47:37 (GMT) |
commit | eed54b62810c15c58fe073bea486104bf0e4d5c9 (patch) | |
tree | 9e0c193dd5c8b3661ad6d226d9fd3e70c02a996d | |
parent | 6dbdfc31d2570ae3f957e2c40d5209ae24533bbb (diff) | |
download | tcl-eed54b62810c15c58fe073bea486104bf0e4d5c9.zip tcl-eed54b62810c15c58fe073bea486104bf0e4d5c9.tar.gz tcl-eed54b62810c15c58fe073bea486104bf0e4d5c9.tar.bz2 |
Fixed makefile.vc: install will create missing dir "tcl8/8.7" for msgcat
-rw-r--r-- | win/makefile.vc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 918c6b7..3e4608e 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -832,6 +832,8 @@ install-libraries: tclConfig tcl-nmake install-msgs install-tzdata $(MKDIR) "$(SCRIPT_INSTALL_DIR)\..\tcl8\8.5"
@if not exist "$(SCRIPT_INSTALL_DIR)\..\tcl8\8.6" \
$(MKDIR) "$(SCRIPT_INSTALL_DIR)\..\tcl8\8.6"
+ @if not exist "$(SCRIPT_INSTALL_DIR)\..\tcl8\8.7" \
+ $(MKDIR) "$(SCRIPT_INSTALL_DIR)\..\tcl8\8.7"
@if not exist "$(LIB_INSTALL_DIR)\nmake" \
$(MKDIR) "$(LIB_INSTALL_DIR)\nmake"
@echo Installing header files
|