Skip to content

Commit c99d945

Browse files
committed
---
yaml --- r: 177064 b: refs/heads/auto c: 04408fa h: refs/heads/master v: v3
1 parent ff50809 commit c99d945

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1010
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1111
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1212
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
13-
refs/heads/auto: 2822bc582c777fe513e67ae781ab829a053a66c3
13+
refs/heads/auto: 04408fadd39b8fe75a97f08186be6701dd200799
1414
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1515
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1616
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/src/etc/make-win-dist.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414
# argv[3] = target triple
1515
# The first two correspond to the two installable components defined in the setup script.
1616

17-
import sys, os, shutil, subprocess
17+
import sys
18+
import os
19+
import shutil
20+
import subprocess
21+
1822

1923
def find_files(files, path):
2024
found = []
@@ -28,6 +32,7 @@ def find_files(files, path):
2832
raise Exception("Could not find '%s' in %s" % (fname, path))
2933
return found
3034

35+
3136
def make_win_dist(rust_root, gcc_root, target_triple):
3237
# Ask gcc where it keeps its stuff
3338
gcc_out = subprocess.check_output(["gcc.exe", "-print-search-dirs"])
@@ -114,5 +119,5 @@ def make_win_dist(rust_root, gcc_root, target_triple):
114119
for src in target_libs:
115120
shutil.copy(src, target_lib_dir)
116121

117-
if __name__=="__main__":
122+
if __name__ == "__main__":
118123
make_win_dist(sys.argv[1], sys.argv[2], sys.argv[3])

0 commit comments

Comments
 (0)