diff options
author | Lucian Petrut <lpetrut@cloudbasesolutions.com> | 2021-05-06 09:10:36 +0200 |
---|---|---|
committer | Lucian Petrut <lpetrut@cloudbasesolutions.com> | 2021-05-06 09:42:08 +0200 |
commit | f1a8044f1da0f7171ee189b1c0c5f1e519694777 (patch) | |
tree | c6dae1c8a9ec161b5d8211db178d6f6de68ab035 /win32_deps_build.sh | |
parent | Merge pull request #40937 from MrFreezeex/snap-remove-fix (diff) | |
download | ceph-f1a8044f1da0f7171ee189b1c0c5f1e519694777.tar.xz ceph-f1a8044f1da0f7171ee189b1c0c5f1e519694777.zip |
win32*.sh: fix boost url
The boost download location has changed, breaking the Windows build.
Ths commit updates the boost download url.
Signed-off-by: Lucian Petrut <lpetrut@cloudbasesolutions.com>
Diffstat (limited to 'win32_deps_build.sh')
-rwxr-xr-x | win32_deps_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32_deps_build.sh b/win32_deps_build.sh index 8083e1be9c5..e779d2685f1 100755 --- a/win32_deps_build.sh +++ b/win32_deps_build.sh @@ -24,7 +24,7 @@ curlSrcDir="${depsSrcDir}/curl" curlDir="${depsToolsetDir}/curl" # For now, we'll keep the version number within the file path when not using git. -boostUrl="https://dl.bintray.com/boostorg/release/1.73.0/source/boost_1_73_0.tar.gz" +boostUrl="https://boostorg.jfrog.io/artifactory/main/release/1.73.0/source/boost_1_73_0.tar.gz" boostSrcDir="${depsSrcDir}/boost_1_73_0" boostDir="${depsToolsetDir}/boost" zlibDir="${depsToolsetDir}/zlib" |