diff options
author | Andreas Kling <kling@serenityos.org> | 2020-01-26 10:33:43 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-01-26 10:33:43 +0100 |
commit | 8fb9dc74257ebae6f6e90318aaa401da1ee0726f (patch) | |
tree | 868cbd23f3fa9a625a8575ecc741e48777653988 /Ports | |
parent | 22d563b1aaca4744d2cac481104355729f76e898 (diff) | |
download | serenity-8fb9dc74257ebae6f6e90318aaa401da1ee0726f.zip |
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.
Diffstat (limited to 'Ports')
-rwxr-xr-x | Ports/zlib/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/zlib/package.sh b/Ports/zlib/package.sh index 04f2a62de8..35e70e06a7 100755 --- a/Ports/zlib/package.sh +++ b/Ports/zlib/package.sh @@ -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 } |