Skip to content

Commit

Permalink
fix zlib dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Arenoros committed Feb 19, 2024
1 parent 4858eaf commit 9318fcb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/depends/zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ while getopts "b:t:p:" c; do
done

mkdir $prefix || exit 1
wget https://zlib.net/zlib-1.3.tar.gz || exit 1
tar -xf zlib-1.3.tar.gz || exit 1
cd zlib-1.3
wget https://zlib.net/current/zlib.tar.gz || exit 1
mkdir zlib
tar -xf zlib.tar.gz -C zlib || exit 1
cd $(dirname $(find zlib -name zlib.h))

build()
{
Expand Down

0 comments on commit 9318fcb

Please sign in to comment.