From 1fc54ebef1e511c7a512f01e05dea064b2f0e0b9 Mon Sep 17 00:00:00 2001 From: sam_c <11667869+thesamesam@users.noreply.github.com> Date: Mon, 20 Apr 2020 18:29:16 +0100 Subject: Makefile.am: Replace make with ${MAKE} (#270) Fixes warnings such as: "warning: jobserver unavailable: using -j1. Add `+' to parent make rule." Signed-off-by: Sam James (sam_c) --- doc/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/Makefile.am') diff --git a/doc/Makefile.am b/doc/Makefile.am index 5c8a5d85..4ce26f06 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -55,7 +55,7 @@ all: $(generated_docs) install-data-hook: $(static_docs) $(toplevel_docs) $(generated_docs) $(MKDIR_P) -m 755 $(DESTDIR)$(sysconfdir) @if [ ! -f $(DESTDIR)$(sysconfdir)/ngircd.conf ]; then \ - make install-config; \ + ${MAKE} install-config; \ fi $(MKDIR_P) -m 755 $(DESTDIR)$(docdir) for f in $(static_docs) $(toplevel_docs); do \ @@ -75,7 +75,7 @@ install-config: uninstall-hook: rm -rf $(DESTDIR)$(docdir) @if cmp --silent sample-ngircd.conf $(DESTDIR)$(sysconfdir)/ngircd.conf; then \ - make uninstall-config; \ + ${MAKE} uninstall-config; \ else \ echo; \ echo " ** NOTE: Not uninstalling changed configuration file:"; \ @@ -87,7 +87,7 @@ uninstall-config: rm -f $(DESTDIR)$(sysconfdir)/ngircd.conf srcdoc: - make -C src srcdoc + ${MAKE} -C src srcdoc .PHONY: install-config uninstall-config srcdoc -- cgit 1.4.1