]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Partially revert e54e3f90: restore use of $(MAKE) in error message.
authorZack Weinberg <zackw@panix.com>
Tue, 4 Aug 2020 12:46:59 +0000 (08:46 -0400)
committerZack Weinberg <zackw@panix.com>
Tue, 4 Aug 2020 12:46:59 +0000 (08:46 -0400)
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.

GNUmakefile

index bf052693e69f6f208ea1767cca57638fddb41cd7..770923b8574057b380f6a725fca7fc22a29203f3 100644 (file)
@@ -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