1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +00:00

Ports: Fix zlib build

We only support static linking at the moment, and zlib was trying to
build itself as a shared library.

Fixes #1135.
This commit is contained in:
Andreas Kling 2020-01-26 10:33:43 +01:00
parent 22d563b1aa
commit 8fb9dc7425

View file

@ -5,5 +5,5 @@ useconfigure=true
files="https://www.zlib.net/zlib-1.2.11.tar.gz zlib-1.2.11.tar.gz"
configure() {
run ./configure
run ./configure --static
}