diff options
author | Joseph Mingrone <jrm@FreeBSD.org> | 2022-11-24 15:36:51 +0000 |
---|---|---|
committer | Joseph Mingrone <jrm@FreeBSD.org> | 2022-11-24 20:17:25 +0000 |
commit | cfaf4e03f60274e7b2125ab5ccb40730e35821b6 (patch) | |
tree | ef2ce4505599f88ab2de88deb396198f8f7965ab | |
parent | ef23f41eb565c84fc675bc9dbf1810e51c616799 (diff) | |
download | doc-cfaf4e03f6.tar.gz doc-cfaf4e03f6.zip |
doc-build: Update advanced build example
The --path-warnings flag is no longer supported, so removed it. While
here, include DOC_LANG, to show how documentation for a subset of
languages can be built.
Approved by: carlavilla
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D37498
-rw-r--r-- | documentation/content/en/books/fdp-primer/doc-build/_index.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/content/en/books/fdp-primer/doc-build/_index.adoc b/documentation/content/en/books/fdp-primer/doc-build/_index.adoc index fe360864e5..00a9ef5827 100644 --- a/documentation/content/en/books/fdp-primer/doc-build/_index.adoc +++ b/documentation/content/en/books/fdp-primer/doc-build/_index.adoc @@ -115,13 +115,13 @@ To render the documentation and the website to `html` use one of the following e Advanced build examples are given below: [[documentation-build-example-verbose]] -.Build the documentation with verbose and debug messages +.Build English and Spanish documentation with verbose and debug messages [example] ==== [source,shell] .... % cd ~/doc/documentation -% make HUGO_ARGS="--verbose --debug --path-warnings" +% make DOC_LANG="en es" HUGO_ARGS="--verbose --debug" .... ==== |