projects
/
nextcloud-desktop.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2281d7f
)
Fix make_universal.py not taking into account 64-bit bundle dylibs
author
Claudio Cambra
<claudio.cambra@nextcloud.com>
Mon, 26 Aug 2024 07:22:30 +0000
(15:22 +0800)
committer
Matthieu Gallien
<matthieu_gallien@yahoo.fr>
Mon, 9 Sep 2024 14:00:43 +0000
(16:00 +0200)
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
admin/osx/make_universal.py
patch
|
blob
|
history
diff --git
a/admin/osx/make_universal.py
b/admin/osx/make_universal.py
index 1b31e83179c7c7d13865e0b78a2777ffd8d317d5..e5915e1089ff24f40be5e911f091e6fb6ba36743 100755
(executable)
--- a/
admin/osx/make_universal.py
+++ b/
admin/osx/make_universal.py
@@
-34,7
+34,8
@@
def path_relative_to_package(app_package_file_path, file_path):
def is_executable(file_path):
output = str(execute(["file", file_path]))
if (("Mach-O 64-bit dynamically linked shared library" in output)
- or ("Mach-O 64-bit executable" in output)):
+ or ("Mach-O 64-bit executable" in output)
+ or ("Mach-O 64-bit bundle" in output)):
return True
return False