build: use gmake on OpenBSD

This commit is contained in:
Lephenixnoir 2021-03-18 14:00:59 +01:00
parent 12ec54c78e
commit d1e489e462
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495
2 changed files with 15 additions and 2 deletions

View file

@ -14,5 +14,12 @@ else
fi fi
echo "$TAG Compiling binutils (usually 5-10 minutes)..." echo "$TAG Compiling binutils (usually 5-10 minutes)..."
if command -v gmake >/dev/null 2>&1; then
make_command=gmake
else
make_command=make
fi
run_quietly giteapc-build.log \ run_quietly giteapc-build.log \
make -j"$cores" $make_command -j"$cores"

View file

@ -6,10 +6,16 @@
source util.sh source util.sh
PREFIX="$1" PREFIX="$1"
if command -v gmake >/dev/null 2>&1; then
make_command=gmake
else
make_command=make
fi
cd build cd build
echo "$TAG Installing to local folder..." echo "$TAG Installing to local folder..."
run_quietly giteapc-install.log \ run_quietly giteapc-install.log \
make install-strip $make_command install-strip
cd .. cd ..
# Symbolic link executables to $PREFIX/bin # Symbolic link executables to $PREFIX/bin