mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ports/freetype: Set the correct sysroot
This is now required after we don't manually link the build output anymore.
This commit is contained in:
parent
b67b5b8292
commit
90dafefb9e
Notes:
sideshowbarker
2024-07-17 10:22:52 +09:00
Author: https://github.com/timschumi Commit: https://github.com/SerenityOS/serenity/commit/90dafefb9e Pull-request: https://github.com/SerenityOS/serenity/pull/14220 Reviewed-by: https://github.com/BertalanD Reviewed-by: https://github.com/EWouters Reviewed-by: https://github.com/linusg
1 changed files with 8 additions and 1 deletions
|
@ -6,7 +6,14 @@ auth_type='sha256'
|
||||||
useconfigure='true'
|
useconfigure='true'
|
||||||
use_fresh_config_sub='true'
|
use_fresh_config_sub='true'
|
||||||
config_sub_paths=("builds/unix/config.sub")
|
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() {
|
install() {
|
||||||
run make DESTDIR="${SERENITY_INSTALL_ROOT}" "${installopts[@]}" install
|
run make DESTDIR="${SERENITY_INSTALL_ROOT}" "${installopts[@]}" install
|
||||||
|
|
Loading…
Reference in a new issue