Skip to content

Commit a587b00

Browse files
committed
_macuni.sh: exclude wcurl
1 parent e26b99e commit a587b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_macuni.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ else
3939
# Is it possible to merge .map files? Exclude them from universal packages for now.
4040
find "${unipkg}" -name '*.map' -delete
4141
# Walk through all executables and libraries we want to merge into universal.
42-
find "${unipkg}" -mindepth 2 -type f \( -name '*.a' -o -perm +111 \) | while read -r f; do
42+
find "${unipkg}" -mindepth 2 -type f \( -name '*.a' -o \( -perm +111 -a -not -name 'wcurl' \) \) | while read -r f; do
4343
sub="$(printf '%s' "${f}" | cut -c 2- | sed -E 's|^[^/]+||g')" # get subdir part, e.g. '/lib/libname.a'
4444
in=()
4545
while read -r d; do

0 commit comments

Comments
 (0)