@@ -23,7 +23,7 @@ def find_files(files, path):
23
23
return found
24
24
25
25
def make_win_dist (dist_root , target_triple ):
26
- # Ask gcc where it keeps its' stuff
26
+ # Ask gcc where it keeps its stuff
27
27
gcc_out = subprocess .check_output (["gcc.exe" , "-print-search-dirs" ])
28
28
bin_path = os .environ ["PATH" ].split (os .pathsep )
29
29
lib_path = []
@@ -59,14 +59,14 @@ def make_win_dist(dist_root, target_triple):
59
59
shutil .copy (src , dist_bin_dir )
60
60
61
61
# Copy platform tools to platform-specific bin directory
62
- target_bin_dir = os .path .join (dist_root , "bin" , "rustlib" , target_triple , "gcc" , " bin" )
62
+ target_bin_dir = os .path .join (dist_root , "bin" , "rustlib" , target_triple , "bin" )
63
63
if not os .path .exists (target_bin_dir ):
64
64
os .makedirs (target_bin_dir )
65
65
for src in target_tools :
66
66
shutil .copy (src , target_bin_dir )
67
67
68
68
# Copy platform libs to platform-spcific lib directory
69
- target_lib_dir = os .path .join (dist_root , "bin" , "rustlib" , target_triple , "gcc" , " lib" )
69
+ target_lib_dir = os .path .join (dist_root , "bin" , "rustlib" , target_triple , "lib" )
70
70
if not os .path .exists (target_lib_dir ):
71
71
os .makedirs (target_lib_dir )
72
72
for src in target_libs :
0 commit comments