Commit 2011a6b2 authored by Lasse Karstensen's avatar Lasse Karstensen

Use gmake as a fallback if make doesn't exist

gmake doesn't exist on Linux servers.
parent 4fe2ad4a
......@@ -18,7 +18,10 @@ rm -f configure
# autoconf prior to 2.62 has issues with zsh 4.2 and newer
export CONFIG_SHELL=/bin/sh
env MAKE=gmake \
if [ ! -x "/usr/bin/xmake" -a "x${MAKE}" == "x"]; then
export MAKE=gmake
fi
./configure \
--enable-developer-warnings \
--enable-debugging-symbols \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment