From 90dafefb9edd5245c9a72694e99fffb67ff7e871 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Tue, 7 Jun 2022 10:53:25 +0200 Subject: [PATCH] Ports/freetype: Set the correct sysroot This is now required after we don't manually link the build output anymore. --- Ports/freetype/package.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Ports/freetype/package.sh b/Ports/freetype/package.sh index 825c1db0a3..5164a67af3 100755 --- a/Ports/freetype/package.sh +++ b/Ports/freetype/package.sh @@ -6,7 +6,14 @@ auth_type='sha256' useconfigure='true' use_fresh_config_sub='true' config_sub_paths=("builds/unix/config.sub") -configopts=("--with-brotli=no" "--with-bzip2=no" "--with-zlib=no" "--with-harfbuzz=no" "--with-png=no") +configopts=( + "--with-sysroot=${SERENITY_INSTALL_ROOT}" + "--with-brotli=no" + "--with-bzip2=no" + "--with-zlib=no" + "--with-harfbuzz=no" + "--with-png=no" +) install() { run make DESTDIR="${SERENITY_INSTALL_ROOT}" "${installopts[@]}" install