Skip to content

Commit 08e0385

Browse files
committed
build: Change bzip download location to improve reliability.
1 parent 92ac217 commit 08e0385

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.mac.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ cd ..
127127
fi
128128

129129
if [ ! -d bzip2-1.0.8 ]; then
130-
curl -L https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz -o bzip2.tar.gz
130+
curl -L https://gitlab.com/bzip2/bzip2/-/archive/bzip2-1.0.8/bzip2-bzip2-1.0.8.tar.gz -o bzip2.tar.gz
131131
tar -xf bzip2.tar.gz
132-
cd bzip2-1.0.8
132+
cd bzip2-bzip2-1.0.8
133133
make install "PREFIX=$PREFIX" -j$(sysctl -n hw.ncpu)
134134
cd ..
135135
fi

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ cd ..
122122
fi
123123

124124
if [ ! -d bzip2-1.0.8 ]; then
125-
curl https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz -o bzip2.tar.gz
125+
curl https://gitlab.com/bzip2/bzip2/-/archive/bzip2-1.0.8/bzip2-bzip2-1.0.8.tar.gz -o bzip2.tar.gz
126126
tar -xf bzip2.tar.gz
127-
cd bzip2-1.0.8
127+
cd bzip2-bzip2-1.0.8
128128
make install "PREFIX=$PREFIX" -j$(nproc --all)
129129
cd ..
130130
fi

0 commit comments

Comments
 (0)