From 31be146ba08805635839ee99db2d05f2748d6dcf Mon Sep 17 00:00:00 2001 From: Vadim Chugunov Date: Tue, 11 Aug 2015 23:19:38 -0700 Subject: [PATCH] Fix #26803 --- src/etc/make-win-dist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/make-win-dist.py b/src/etc/make-win-dist.py index defda27acc9ec..1c289e7118824 100644 --- a/src/etc/make-win-dist.py +++ b/src/etc/make-win-dist.py @@ -45,7 +45,7 @@ def make_win_dist(rust_root, gcc_root, target_triple): elif key == "libraries": lib_path.extend(val.lstrip(' =').split(';')) - target_tools = ["gcc.exe", "ld.exe", "ar.exe", "dlltool.exe", "windres.exe"] + target_tools = ["gcc.exe", "ld.exe", "ar.exe", "dlltool.exe"] rustc_dlls = ["libstdc++-6.dll"] if target_triple.startswith("i686-"):