diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-06-08 11:44:52 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-08 13:23:04 +0100 |
commit | f76f68aad9417f40b68f033b59e7661199e40f17 (patch) | |
tree | f4cb210b68d23cd5f9a68ba162b3091ff65933c9 | |
parent | 5704b7e128fe4fa2c553697d9dd13b0014e4f449 (diff) | |
download | serenity-f76f68aad9417f40b68f033b59e7661199e40f17.zip |
Ports/libtiff: Set the correct sysroot
-rwxr-xr-x | Ports/libtiff/package.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Ports/libtiff/package.sh b/Ports/libtiff/package.sh index 13683387cf..e33af1c4fe 100755 --- a/Ports/libtiff/package.sh +++ b/Ports/libtiff/package.sh @@ -4,6 +4,11 @@ version='4.4.0' files="http://download.osgeo.org/libtiff/tiff-${version}.tar.xz tiff-${version}.tar.xz 49307b510048ccc7bc40f2cba6e8439182fe6e654057c1a1683139bf2ecb1dc1" auth_type='sha256' useconfigure='true' -configopts=("--disable-static" "--enable-shared") +configopts=( + "--with-sysroot=${SERENITY_INSTALL_ROOT}" + "--prefix=/usr/local" + "--disable-static" + "--enable-shared" +) workdir="tiff-${version}" depends=("libjpeg" "zstd" "xz") |