Skip to content

Commit

Permalink
Explicitly check out the 'master' branch of zlib, since that project'…
Browse files Browse the repository at this point in the history
…s default branch was changed to 'develop'.
  • Loading branch information
jtesta committed Aug 31, 2023
1 parent e0563b9 commit dee58d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ zlibpull:
if [ -d zlib_mingw -a -d zlib_mingw/.git ]; then \
cd ./zlib_mingw && git pull && git checkout tags/`git describe --abbrev=0 --tags` ; \
else \
git clone --depth 1 https://github.com/madler/zlib ./zlib_mingw && cd ./zlib_mingw && git checkout tags/`git describe --abbrev=0` ; \
git clone -b master --depth 1 https://github.com/madler/zlib ./zlib_mingw && cd ./zlib_mingw && git checkout tags/`git describe --abbrev=0` ; \
fi

opensslpull:
Expand Down

0 comments on commit dee58d5

Please sign in to comment.