Date: Sat, 28 Aug 2021 17:45:01 GMT From: Ceri Davies <ceri@FreeBSD.org> To: doc-committers@FreeBSD.org, dev-commits-doc-all@FreeBSD.org Subject: git: bc3a01ed0c - main - documentation/Makefile: correct error message if deps aren't found. Message-ID: <202108281745.17SHj1FJ088038@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by ceri: URL: https://cgit.FreeBSD.org/doc/commit/?id=bc3a01ed0c7903bd9412ece6f32f48eee2cc9985 commit bc3a01ed0c7903bd9412ece6f32f48eee2cc9985 Author: Ceri Davies <ceri@FreeBSD.org> AuthorDate: 2021-08-28 17:43:31 +0000 Commit: Ceri Davies <ceri@FreeBSD.org> CommitDate: 2021-08-28 17:43:31 +0000 documentation/Makefile: correct error message if deps aren't found. PR: 256523 --- documentation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/Makefile b/documentation/Makefile index 615b162ffa..9b2dd4f4e6 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -104,7 +104,7 @@ clean: hugo-clean pgp-clean toc-clean requirements: .for dep in ${RUN_DEPENDS} .if !exists(${dep}) - @(echo ${dep} not found, please run 'pkg install docproj'; exit 1) + @(echo ${dep} not found, please run 'pkg install docproj python3'; exit 1) .endif .endfor
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108281745.17SHj1FJ088038>