diff options
author | Brad King <brad.king@kitware.com> | 2024-01-31 14:45:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-01-31 15:01:53 (GMT) |
commit | 692463d271c5afae5c48b8f05117a9a2e035d6be (patch) | |
tree | ffdfff0e33319231425b59e13f345d7517bc453b | |
parent | 16b1f0c3e99023316b12fdabd1980a18b738d942 (diff) | |
download | CMake-692463d271c5afae5c48b8f05117a9a2e035d6be.zip CMake-692463d271c5afae5c48b8f05117a9a2e035d6be.tar.gz CMake-692463d271c5afae5c48b8f05117a9a2e035d6be.tar.bz2 |
curl: Update script to get curl 8.6.0
-rwxr-xr-x | Utilities/Scripts/update-curl.bash | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Utilities/Scripts/update-curl.bash b/Utilities/Scripts/update-curl.bash index e5b63c9..09bb65b 100755 --- a/Utilities/Scripts/update-curl.bash +++ b/Utilities/Scripts/update-curl.bash @@ -8,7 +8,7 @@ readonly name="curl" readonly ownership="Curl Upstream <curl-library@lists.haxx.se>" readonly subtree="Utilities/cmcurl" readonly repo="https://github.com/curl/curl.git" -readonly tag="curl-8_5_0" +readonly tag="curl-8_6_0" readonly shortlog=false readonly paths=" CMake/* @@ -35,15 +35,6 @@ extract_source () { git_archive pushd "${extractdir}/${name}-reduced" rm lib/config-*.h - chmod a-x lib/connect.c - for f in \ - lib/cookie.c \ - lib/krb5.c \ - lib/security.c \ - ; do - iconv -f LATIN1 -t UTF8 $f -o $f.utf-8 - mv $f.utf-8 $f - done echo "* -whitespace" > .gitattributes popd } |