File tree 2 files changed +6
-3
lines changed 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ uninstall:
141
141
@true
142
142
143
143
opensslpull :
144
- upstream=` git ls-remote https://github.com/openssl/openssl | grep -Eo ' (openssl-3\.0 \.[0-9]+)' | sort -V | tail -n 1` ; \
144
+ upstream=` git ls-remote https://github.com/openssl/openssl | grep -Eo ' (openssl-3\.5 \.[0-9]+)' | sort -V | tail -n 1` ; \
145
145
if [ -d openssl -a -d openssl/.git ]; then \
146
146
if [ " $$ upstream" != " ` cd ./openssl && git describe --exact-match --tags` " ]; then \
147
147
cd ./openssl && git fetch --depth 1 origin refs/tags/$$ upstream:refs/tags/$$ upstream && git checkout $$ upstream && touch ../.openssl.is.fresh ; \
Original file line number Diff line number Diff line change @@ -70,10 +70,13 @@ zlibpull:
70
70
fi
71
71
72
72
opensslpull:
73
+ upstream=`git ls-remote https://github.com/openssl/openssl | grep -Eo '(openssl-3\.5\.[0-9]+)' | sort -V | tail -n 1` ; \
73
74
if [ -d openssl_mingw -a -d openssl_mingw/.git ]; then \
74
- cd ./openssl_mingw && git checkout `git ls-remote https://github.com/openssl/openssl | grep -Eo '(openssl-3\.0\.[0-9]+)' | sort --version-sort | tail -n 1` && git pull | grep -q "Already up-to-date." && [ -e ../.openssl_mingw.is.fresh ] || touch ../.openssl_mingw.is.fresh ; \
75
+ if [ "$$upstream" != "`cd ./openssl_mingw && git describe --exact-match --tags`" ]; then \
76
+ cd ./openssl_mingw && git fetch --depth 1 origin refs/tags/$$upstream:refs/tags/$$upstream && git checkout $$upstream && touch ../.openssl_mingw.is.fresh ; \
77
+ fi \
75
78
else \
76
- git clone --depth 1 -b `git ls-remote https://github.com/openssl/openssl | grep -Eo '(openssl-3\.0\.[0-9]+)' | sort --version-sort | tail -n 1` https://github.com/openssl/openssl ./openssl_mingw && cd ./openssl_mingw && touch ../.openssl_mingw.is.fresh ; \
79
+ git clone --depth 1 -b $$upstream https://github.com/openssl/openssl ./openssl_mingw && cd ./openssl_mingw && touch ../.openssl_mingw.is.fresh ; \
77
80
fi
78
81
79
82
zlib_mingw/libz.a: zlibpull
You can’t perform that action at this time.
0 commit comments