rust/src/ci/docker/scripts/make3.sh
2020-11-06 20:33:12 +09:00

10 lines
165 B
Bash

#!/bin/sh
set -ex
curl -f https://ftp.gnu.org/gnu/make/make-3.81.tar.gz | tar xzf -
cd make-3.81
./configure --prefix=/usr
make
make install
cd ..
rm -rf make-3.81