sinofool / build-openssl-ios

Build openssl for iOS development, include armv7 armv7s arm64 i386 and x86_64 support.
http://sinofool.net/blog/archives/172
MIT License
124 stars 57 forks source link

Wrong URLs in script for 1.02 branch #7

Open skuskusku opened 5 years ago

skuskusku commented 5 years ago

Hello Sinofool,

thank you very much for this wonderful script.

I have found a couple of issues with the build script which I would like to share. While the master branch builds correctly for me, the 1.02 branch doesn't. The reason is: The URLs used for downloading via curl use the raw URLs from the master branch, and those do not work with the 1.02 branch.

The invocations of curl in the build script should look like this:

curl -O https://raw.githubusercontent.com/sinofool/build-openssl-ios/1.0/patch-conf.patch and curl -O https://raw.githubusercontent.com/sinofool/build-openssl-ios/1.0/patch-include.patch

Also, the README.md file should use the proper URL for the 1.02 branch, not the master branch.

HTH,

-- Stefan