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
Notes: sideshowbarker 2024-07-19 09:48:53 +09:00

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
}