@@ -35,8 +35,7 @@ def fix_rpath(PATH):
35
35
36
36
# Change ID path of library files
37
37
# Sometimes, the ID has an absolute path or invalid @rpath embedded in it, which breaks our frozen exe
38
- call (["install_name_tool" , file_path , "-id" , executable_path ],
39
- stdout = subprocess .STDOUT , stderr = subprocess .DEVNULL )
38
+ call (["install_name_tool" , file_path , "-id" , executable_path ])
40
39
41
40
# Loop through all dependencies of each library/executable
42
41
raw_output = subprocess .Popen (["oTool" , "-L" , file_path ], stdout = subprocess .PIPE ).communicate ()[0 ].decode ('utf-8' )
@@ -51,8 +50,7 @@ def fix_rpath(PATH):
51
50
if not os .path .exists (os .path .join (PATH , dependency_name )):
52
51
print ("ERROR: /usr/local PATH not found in EXE folder: %s" % dependency_path )
53
52
else :
54
- call (["install_name_tool" , file_path , "-change" , dependency_path , dependency_exe_path ],
55
- stdout = subprocess .STDOUT , stderr = subprocess .DEVNULL )
53
+ call (["install_name_tool" , file_path , "-change" , dependency_path , dependency_exe_path ])
56
54
57
55
58
56
def print_min_versions (PATH ):
0 commit comments