summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2020-08-04 08:46:59 -0400
committerZack Weinberg <zackw@panix.com>2020-08-04 08:46:59 -0400
commit50d06060f1ec58c957d65244a71d6d10070112cd (patch)
treeac7020b7c6d8dd78c03cdb27a886e7fec1fce5ac
parent0f8fd8ec8674dde4cca94fc0efa8794fd3944ad8 (diff)
downloadautoconf-50d06060f1ec58c957d65244a71d6d10070112cd.tar.gz
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.
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
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