about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-08-12 19:13:52 +0000
committerbors <bors@rust-lang.org>2015-08-12 19:13:52 +0000
commitd07d465cf60033e35eba16b9e431471d54c712f4 (patch)
tree600d97eb4a85ba4ea303906601c906d28d64763d
parent8b5948d5bf08f27bf443356549a25b39d40c159d (diff)
parent31be146ba08805635839ee99db2d05f2748d6dcf (diff)
downloadrust-d07d465cf60033e35eba16b9e431471d54c712f4.tar.gz
rust-d07d465cf60033e35eba16b9e431471d54c712f4.zip
Auto merge of #27690 - vadimcn:no-windres, r=alexcrichton
Fix #26803
-rw-r--r--src/etc/make-win-dist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/make-win-dist.py b/src/etc/make-win-dist.py
index defda27acc9..1c289e71188 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-"):