From f711ba2ca3cd21a72d1ef76cdb411363441dc8f3 Mon Sep 17 00:00:00 2001 From: def Date: Wed, 1 Jul 2015 14:40:37 +0200 Subject: [PATCH] Also fix 64bit Windows curl --- scripts/make_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make_release.py b/scripts/make_release.py index f8d3a880f..98063bcfa 100644 --- a/scripts/make_release.py +++ b/scripts/make_release.py @@ -77,6 +77,7 @@ if include_data and not use_bundle: shutil.copy("freetype.dll", package_dir) if platform == "win32": shutil.copy("libgcc_s_sjlj-1.dll", package_dir) + shutil.copy("libidn-11.dll", package_dir) elif platform == "win64": shutil.copy("libgcc_s_seh-1.dll", package_dir) shutil.copy("libogg-0.dll", package_dir) @@ -86,7 +87,6 @@ if include_data and not use_bundle: #shutil.copy("mysqlcppconn.dll", package_dir) shutil.copy("libcurl.dll", package_dir) shutil.copy("libeay32.dll", package_dir) - shutil.copy("libidn-11.dll", package_dir) shutil.copy("ssleay32.dll", package_dir) shutil.copy("zlib1.dll", package_dir)