diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-06-07 10:53:25 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-08 13:23:04 +0100 |
commit | 90dafefb9edd5245c9a72694e99fffb67ff7e871 (patch) | |
tree | c91d1eef3c5ab79a42af23630ec47804a171de46 /Ports | |
parent | b67b5b8292e341f526cb1974f7d8f28c424e7e41 (diff) | |
download | serenity-90dafefb9edd5245c9a72694e99fffb67ff7e871.zip |
Ports/freetype: Set the correct sysroot
This is now required after we don't manually link the build output
anymore.
Diffstat (limited to 'Ports')
-rwxr-xr-x | Ports/freetype/package.sh | 9 |
1 files changed, 8 insertions, 1 deletions
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 |