diff options
author | sebres <sebres@users.sourceforge.net> | 2018-07-20 15:54:11 (GMT) |
---|---|---|
committer | sebres <sebres@users.sourceforge.net> | 2018-07-20 15:54:11 (GMT) |
commit | 7fb72851e8562eb2e68ec94d10e1b88fb40b863e (patch) | |
tree | a5546297ce0f9e42bf96bd57fdae1f8a62922ea7 /win/configure | |
parent | 4a3f32b84a736f51135c5321007ba7c7fa8ed47e (diff) | |
download | tcl-7fb72851e8562eb2e68ec94d10e1b88fb40b863e.zip tcl-7fb72851e8562eb2e68ec94d10e1b88fb40b863e.tar.gz tcl-7fb72851e8562eb2e68ec94d10e1b88fb40b863e.tar.bz2 |
win: fixes x64-build within gcc-compile runtime env for (mingw64, etc): "$do64bit" may be "amd64|x64|yes", so it could find & copy wrong zlib.dll.
Diffstat (limited to 'win/configure')
-rwxr-xr-x | win/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/configure b/win/configure index be38dc3..03ad68a 100755 --- a/win/configure +++ b/win/configure @@ -4372,7 +4372,7 @@ if test "$tcl_ok" = "yes"; then ZLIB_DLL_FILE=\${ZLIB_DLL_FILE} - if test "$do64bit" = "yes"; then + if test "$do64bit" != "no"; then if test "$GCC" == "yes"; then |