Skip to content

Commit 2e99dbd

Browse files
committed
Fix typo in Mac build script
1 parent fb5dfcf commit 2e99dbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

installer/fix_qt5_rpath.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def fix_rpath(PATH):
3636
# Change ID path of library files
3737
# Sometimes, the ID has an absolute path or invalid @rpath embedded in it, which breaks our frozen exe
3838
call(["install_name_tool", file_path, "-id", executable_path],
39-
stdout=subprocess.STDOUT, stderr=subprocess.DEVNUL)
39+
stdout=subprocess.STDOUT, stderr=subprocess.DEVNULL)
4040

4141
# Loop through all dependencies of each library/executable
4242
raw_output = subprocess.Popen(["oTool", "-L", file_path], stdout=subprocess.PIPE).communicate()[0].decode('utf-8')
@@ -52,7 +52,7 @@ def fix_rpath(PATH):
5252
print("ERROR: /usr/local PATH not found in EXE folder: %s" % dependency_path)
5353
else:
5454
call(["install_name_tool", file_path, "-change", dependency_path, dependency_exe_path],
55-
stdout=subprocess.STDOUT, stderr=subprocess.DEVNUL)
55+
stdout=subprocess.STDOUT, stderr=subprocess.DEVNULL)
5656

5757

5858
def print_min_versions(PATH):

0 commit comments

Comments
 (0)