mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-18 10:45:15 +08:00
Prefer ‘$(MAKE)’ to ‘make’ in Makefiles
* GNUmakefile (abort-due-to-no-makefile): * Makefile.am (check-coverage-report): Prefer ‘$(MAKE)’ to ‘make’ in diagnostics.
This commit is contained in:
parent
d7bd610b4c
commit
14d58bfd58
@ -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
|
||||
|
@ -147,7 +147,7 @@ check-coverage-run: all
|
||||
check-coverage-report:
|
||||
@if test ! -d $(PERL_COVERAGE_DB); then \
|
||||
echo "No coverage database found in '$(PERL_COVERAGE_DB)'." >&2; \
|
||||
echo "Please run 'make check-coverage' first" >&2; \
|
||||
echo "Please run '$(MAKE) check-coverage' first" >&2; \
|
||||
exit 1; \
|
||||
fi
|
||||
$(PERL_COVER) $(PERL_COVERAGE_DB) $(PERL_COVER_FLAGS)
|
||||
|
Loading…
Reference in New Issue
Block a user