We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e26b99e commit a587b00Copy full SHA for a587b00
_macuni.sh
@@ -39,7 +39,7 @@ else
39
# Is it possible to merge .map files? Exclude them from universal packages for now.
40
find "${unipkg}" -name '*.map' -delete
41
# 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
+ find "${unipkg}" -mindepth 2 -type f \( -name '*.a' -o \( -perm +111 -a -not -name 'wcurl' \) \) | while read -r f; do
43
sub="$(printf '%s' "${f}" | cut -c 2- | sed -E 's|^[^/]+||g')" # get subdir part, e.g. '/lib/libname.a'
44
in=()
45
while read -r d; do
0 commit comments