Don't link libicudata? (#9424)

* Don't link libicudata?

* Fixups

---------

Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
This commit is contained in:
Jarred Sumner
2024-03-14 20:46:11 -07:00
committed by GitHub
parent 1e090a78c1
commit e256751218
2 changed files with 8 additions and 17 deletions

View File

@@ -18,7 +18,6 @@ if [ -z "$PKG" ]; then
exit 1
fi
url="https://github.com/oven-sh/WebKit/releases/download/autobuild-$TAG/$PKG.tar.gz"
old_tar_dir="$(dirname "$0")/../.webkit-cache"
@@ -54,4 +53,10 @@ fi
tar -xzf "$tar" -C "$(dirname "$OUTDIR")" || (rm "$tar" && exit 1)
echo "$TAG-$PKG" > "$OUTDIR/.tag"
# We want to make sure we use the system-version of icucore on macOS
if [ "$(uname)" == "Darwin" ]; then
# delete the unicode folder from include
rm -rf "$OUTDIR/include/unicode"
fi
echo "$TAG-$PKG" >"$OUTDIR/.tag"