Thomas Heijligen has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/73394 )
Change subject: meson: fix typo "documtation" -> "documentation" ......................................................................
meson: fix typo "documtation" -> "documentation"
When building with -Ddocumentation=enabled/disabled this typo terminates meson because meson can't find the misspellt option.
Change-Id: Ia4205b89fd0d7e77ecbcd29392187d8911dd1049 Signed-off-by: Thomas Heijligen thomas.heijligen@secunet.com --- M doc/meson.build 1 file changed, 14 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/94/73394/1
diff --git a/doc/meson.build b/doc/meson.build index 8826e33..70c3280 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -22,7 +22,7 @@ ) endif
- if get_option('documentation').auto() or get_option('documtation').enabled() + if get_option('documentation').auto() or get_option('documentation').enabled() custom_target( 'documentation', command : [sphinx, '-b', 'html', '-q', '-d', '@PRIVATE_DIR@', '-Drelease=' + meson.project_version(),'@CURRENT_SOURCE_DIR@', '@OUTDIR@/html'],