about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVadim Chugunov <vadimcn@gmail.com>2014-07-05 00:52:32 -0700
committerVadim Chugunov <vadimcn@gmail.com>2014-08-04 17:43:48 -0700
commitad2f67f1c3c5549d4f95dc566133ea648eb4c44c (patch)
treebc74a5edc5638a6b0a5c3c49c128dad450e3da2b
parentbf76e0023114fb47cc8fc766dc2f3d5db8c696a2 (diff)
downloadrust-ad2f67f1c3c5549d4f95dc566133ea648eb4c44c.tar.gz
rust-ad2f67f1c3c5549d4f95dc566133ea648eb4c44c.zip
Use mingw64 target spelling.
-rwxr-xr-xsrc/etc/get-snapshot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/get-snapshot.py b/src/etc/get-snapshot.py
index ec87c321f56..c5acb69df8d 100755
--- a/src/etc/get-snapshot.py
+++ b/src/etc/get-snapshot.py
@@ -53,7 +53,7 @@ if len(sys.argv) == 3:
   dl_path = sys.argv[2]
 else:
   # There are no 64-bit Windows snapshots yet, so we'll use 32-bit ones instead, for now
-  snap_triple = triple if triple != "x86_64-w64-mingw32" else "i686-pc-mingw32"
+  snap_triple = triple if triple != "x86_64-w64-mingw32" else "i686-w64-mingw32"
   snap = determine_curr_snapshot(snap_triple)
   dl = os.path.join(download_dir_base, snap)
   url = download_url_base + "/" + snap