Skip to content

Commit 2b3fd46

Browse files
committed
Moving qtWebEngine resources into the application folder (for mac) instead of a 'resources' sub-folder.
1 parent d6135ac commit 2b3fd46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

freeze.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ def find_files(directory, patterns):
343343

344344
# Add QtWebEngineProcess Resources & Local
345345
for filename in find_files(os.path.join(qt_webengine_path, "Resources"), ["*"]):
346-
external_so_files.append((filename, os.path.relpath(filename, start=qt_webengine_path)))
346+
external_so_files.append((filename, os.path.relpath(filename, start=os.path.join(qt_webengine_path, "Resources"))))
347347
for filename in find_files(os.path.join(qt_webengine_path, "Resources", "qtwebengine_locales"), ["*"]):
348348
external_so_files.append((filename, os.path.relpath(filename, start=os.path.join(qt_webengine_path, "Resources"))))
349349
for filename in find_files(os.path.join(qt_install_path, "plugins", "platforms"), ["*"]):

0 commit comments

Comments
 (0)