Skip to content

Commit a4eb51f

Browse files
committed
Fixes #53 - Correct BZip2 download location.
1 parent a3e5915 commit a4eb51f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ OPENSSL_VERSION_NUMBER=1.0.2
3737
OPENSSL_REVISION=o
3838
OPENSSL_VERSION=$(OPENSSL_VERSION_NUMBER)$(OPENSSL_REVISION)
3939

40-
BZIP2_VERSION=1.0.6
40+
BZIP2_VERSION=1.0.8
4141

4242
XZ_VERSION=5.2.4
4343

@@ -121,7 +121,7 @@ clean-bzip2:
121121
# Download original BZip2 source code archive.
122122
downloads/bzip2-$(BZIP2_VERSION).tgz:
123123
mkdir -p downloads
124-
if [ ! -e downloads/bzip2-$(BZIP2_VERSION).tgz ]; then curl --fail -L http://www.bzip.org/$(BZIP2_VERSION)/bzip2-$(BZIP2_VERSION).tar.gz -o downloads/bzip2-$(BZIP2_VERSION).tgz; fi
124+
if [ ! -e downloads/bzip2-$(BZIP2_VERSION).tgz ]; then curl --fail -L https://sourceware.org/pub/bzip2/bzip2-$(BZIP2_VERSION).tar.gz -o downloads/bzip2-$(BZIP2_VERSION).tgz; fi
125125

126126
###########################################################################
127127
# XZ (LZMA)

0 commit comments

Comments
 (0)