Thomas Heijligen has submitted this change. ( https://review.coreboot.org/c/flashrom/+/73394 )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )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 Reviewed-on: https://review.coreboot.org/c/flashrom/+/73394 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Anastasia Klimchuk aklm@chromium.org Reviewed-by: Elyes Haouas ehaouas@noos.fr --- M doc/meson.build 1 file changed, 18 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Elyes Haouas: Looks good to me, approved Anastasia Klimchuk: Looks good to me, approved
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'],