]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commit
make-dist: don't use --continue option for wget 55090/head
authorCasey Bodley <cbodley@redhat.com>
Mon, 8 Jan 2024 16:24:18 +0000 (08:24 -0800)
committerCasey Bodley <cbodley@redhat.com>
Mon, 8 Jan 2024 18:47:05 +0000 (13:47 -0500)
commitcc0bd66965f8b079a544acc72c49e36aece35547
tree1650fedebd9ad924d092e510f6740a6b42fcadf9
parentcda00bbf2db69ffadb20c123210e286dda76e98e
make-dist: don't use --continue option for wget

the boost jfrog mirror is broken and returns an HTML error page instead
of the archive. the file size of this page is 11534 bytes

when download_from() retries the download from download.ceph.com, the -c
option tells it to resume the download of the existing file. the
resulting boost_1_82_0.tar.bz2 ends up with the correct total file size
of 121325129 bytes, but the first 11534 bytes still correspond to the
HTML from jfrog. that causes the sha256sum mismatch

remove the -c option so that wget fetches the archive in its entirety

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 2ba7d6e59e8750867059c29a33c22bcb3e358b65)
make-dist