From: Zack Weinberg Date: Tue, 4 Aug 2020 12:46:59 +0000 (-0400) Subject: Partially revert e54e3f90: restore use of $(MAKE) in error message. X-Git-Tag: v2.69c~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50d06060f1ec58c957d65244a71d6d10070112cd;p=thirdparty%2Fautoconf.git Partially revert e54e3f90: restore use of $(MAKE) in error message. In commit 14d58bfd, the error message printed by the ‘abort-due-to-no-makefile’ rule in GNUmakefile was changed to refer to the value of ‘$(MAKE)’ instead of a literal ‘make’. A subsequent ‘make fetch’ (e54e3f90) clobbered this. Put it back. --- diff --git a/GNUmakefile b/GNUmakefile index bf052693..770923b8 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -104,7 +104,7 @@ endif abort-due-to-no-makefile: @echo There seems to be no Makefile in this directory. 1>&2 - @echo "You must run ./configure before running 'make'." 1>&2 + @echo "You must run ./configure before running '$(MAKE)'." 1>&2 @exit 1 endif