git: bc3a01ed0c - main - documentation/Makefile: correct error message if deps aren't found.

Ceri Davies ceri at FreeBSD.org
Sat Aug 28 17:45:01 UTC 2021


The branch main has been updated by ceri:

URL: https://cgit.FreeBSD.org/doc/commit/?id=bc3a01ed0c7903bd9412ece6f32f48eee2cc9985

commit bc3a01ed0c7903bd9412ece6f32f48eee2cc9985
Author:     Ceri Davies <ceri at FreeBSD.org>
AuthorDate: 2021-08-28 17:43:31 +0000
Commit:     Ceri Davies <ceri at 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
 


More information about the dev-commits-doc-all mailing list