diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2024-07-10 16:49:24 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2024-07-11 18:03:26 +0200 |
commit | a25ce942988fad9ce3c959499f542022cb40431a (patch) | |
tree | bef456fcf5c68744ba58e6d1c2e1cdade3035173 /bin | |
parent | a000c62e5d26dfc8c7b563d2a6c99fcf21955e98 (diff) |
merge-app-bundles: fix _ctypes.cpython path
Change-Id: I247c9674de88c9b97297d01b24232a562bcade01
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170318
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Tested-by: Jenkins
(cherry picked from commit a7f64217aad6375ea07e260ad2a6bd1e7900af6c)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170300
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/merge-app-bundles | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/merge-app-bundles b/bin/merge-app-bundles index b92c90b5a0c9..34f84274ec5d 100755 --- a/bin/merge-app-bundles +++ b/bin/merge-app-bundles @@ -110,7 +110,7 @@ OUT=$(cd "$3" && /bin/pwd) else # We ignore some files that can't be built for macOS on arm64 for now case "$fname" in - ./Contents/Frameworks/LibreOfficePython.framework/Versions/3.7/lib/python*/lib-dynload/_ctypes.cpython-*m.so) + ./Contents/Frameworks/LibreOfficePython.framework/Versions/3.*/lib/python*/lib-dynload/_ctypes.cpython-*m.so) ;; *) echo "$fname does not exist in $TWO" >&2 |