diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2016-01-06 11:15:20 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2016-01-06 11:15:20 (GMT) |
commit | 618afb4a14611d71a5c659c22da137e8c73a7af0 (patch) | |
tree | c02d61b48ba0b8bc48e6fbd3d12d35842e057dfb | |
parent | 1c2cd322daf5508e4eaddf4d3434d8f025f5e637 (diff) | |
download | tcl-618afb4a14611d71a5c659c22da137e8c73a7af0.zip tcl-618afb4a14611d71a5c659c22da137e8c73a7af0.tar.gz tcl-618afb4a14611d71a5c659c22da137e8c73a7af0.tar.bz2 |
Fix win32 mingw 32-bit build, bug was introduced by [c397433be321e6d9] (wrong zlib1.dll was copied)
FossilOrigin-Name: fae4d8220595fb8433fc25785040063c2ca098a2
-rw-r--r-- | win/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 7e6486c..2d27a41 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -468,7 +468,7 @@ ${TEST_DLL_FILE}: ${TCL_STUB_LIB_FILE} ${TCLTEST_OBJS} # use pre-built zlib1.dll ${ZLIB_DLL_FILE}: ${TCL_STUB_LIB_FILE} - @if test "@ZLIB_LIBS@set" != "${ZLIB_DIR}/win32/zdll.libset" ; then \ + @if test "@ZLIB_LIBS@set" != "${ZLIB_DIR_NATIVE}/win32/zdll.libset" ; then \ $(COPY) $(ZLIB_DIR)/win64/${ZLIB_DLL_FILE} ${ZLIB_DLL_FILE}; \ else \ $(COPY) $(ZLIB_DIR)/win32/${ZLIB_DLL_FILE} ${ZLIB_DLL_FILE}; \ |