summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/dev/build_release.py34
1 files changed, 17 insertions, 17 deletions
diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py
index a8c9177ad..cfa5cf892 100755
--- a/scripts/dev/build_release.py
+++ b/scripts/dev/build_release.py
@@ -232,23 +232,23 @@ def patch_mac_app():
plistlib.dump(plist_data, f)
# Replace some duplicate files by symlinks
- framework_path = os.path.join(app_path, 'Contents', 'MacOS', 'PyQt6',
- 'Qt', 'lib', 'QtWebEngineCore.framework')
-
- core_lib = os.path.join(framework_path, 'Versions', '6', 'QtWebEngineCore')
- os.remove(core_lib)
- core_target = os.path.join(*[os.pardir] * 7, 'MacOS', 'QtWebEngineCore')
- os.symlink(core_target, core_lib)
-
- framework_resource_path = os.path.join(framework_path, 'Resources')
- for name in os.listdir(framework_resource_path):
- file_path = os.path.join(framework_resource_path, name)
- target = os.path.join(*[os.pardir] * 5, name)
- if os.path.isdir(file_path):
- shutil.rmtree(file_path)
- else:
- os.remove(file_path)
- os.symlink(target, file_path)
+ #framework_path = os.path.join(app_path, 'Contents', 'MacOS', 'PyQt6',
+ # 'Qt', 'lib', 'QtWebEngineCore.framework')
+
+ #core_lib = os.path.join(framework_path, 'Versions', '6', 'QtWebEngineCore')
+ #os.remove(core_lib)
+ #core_target = os.path.join(*[os.pardir] * 7, 'MacOS', 'QtWebEngineCore')
+ #os.symlink(core_target, core_lib)
+
+ #framework_resource_path = os.path.join(framework_path, 'Resources')
+ #for name in os.listdir(framework_resource_path):
+ # file_path = os.path.join(framework_resource_path, name)
+ # target = os.path.join(*[os.pardir] * 5, name)
+ # if os.path.isdir(file_path):
+ # shutil.rmtree(file_path)
+ # else:
+ # os.remove(file_path)
+ # os.symlink(target, file_path)
INFO_PLIST_UPDATES = {