Make sure to always use ${MAKE}

Invoking gmake via ${MAKE_S} rather than ${MAKE} breaks parallel builds.

FossilOrigin-Name: 5e210b2ade51782f11d6dc45aa321c79ae86cf17fbe1c127aa9d84a948721046
This commit is contained in:
Jonathan Schleifer 2023-09-07 23:57:46 +00:00
parent 8526726393
commit f764934609
2 changed files with 24 additions and 16 deletions

View file

@ -29,6 +29,10 @@ AC_DEFUN([BUILDSYS_INIT], [
AC_ARG_ENABLE(rpath,
AS_HELP_STRING([--disable-rpath], [do not use rpath]))
AC_ARG_ENABLE(silent-rules,
AS_HELP_STRING([--disable-silent-rules],
[print executed commands during build]))
case "$build_os" in
darwin*)
case "$host_os" in
@ -127,6 +131,11 @@ AC_DEFUN([BUILDSYS_INIT], [
"$($TPUT AF 6 2>/dev/null)")
fi
])
AS_IF([test x"$enable_silent_rules" != x"no"], [
AC_SUBST(SILENT, '.SILENT:')
AC_SUBST(MAKEFLAGS_SILENT, '-s')
])
])
])