Skip to content

Commit c18225c

Browse files
committed
build-make: Bump to GNU make 4.4.1
Versions 4.3 and above only come packaged as .tar.gz and .tar.lz, and the lzip decompressor is less commonly readily available, thus switch back to the .tar.gz format.
1 parent df2d78f commit c18225c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build-make.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -e
1818

1919
unset HOST
2020

21-
: ${MAKE_VERSION:=4.2.1}
21+
: ${MAKE_VERSION:=4.4.1}
2222

2323
while [ $# -gt 0 ]; do
2424
case "$1" in
@@ -53,8 +53,8 @@ download() {
5353
}
5454

5555
if [ ! -d make-$MAKE_VERSION ]; then
56-
download https://ftp.gnu.org/gnu/make/make-$MAKE_VERSION.tar.bz2
57-
tar -jxf make-$MAKE_VERSION.tar.bz2
56+
download https://ftp.gnu.org/gnu/make/make-$MAKE_VERSION.tar.gz
57+
tar -zxf make-$MAKE_VERSION.tar.gz
5858
fi
5959

6060
cd make-$MAKE_VERSION

0 commit comments

Comments
 (0)