diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-10-14 02:07:29 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2022-10-14 05:14:46 +0530 |
commit | 7912901accaee714fc86febdc72f4347b9397759 (patch) | |
tree | 31ad3a9e5adf46318528439a2501969e22f481d1 | |
parent | 4f0452b2835c19dfd7b6ada2f6eb54c48ef8e564 (diff) | |
download | meson-7912901accaee714fc86febdc72f4347b9397759.zip meson-7912901accaee714fc86febdc72f4347b9397759.tar.gz meson-7912901accaee714fc86febdc72f4347b9397759.tar.bz2 |
hotdoc: Fix typo in argument
-rw-r--r-- | mesonbuild/modules/hotdoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/hotdoc.py b/mesonbuild/modules/hotdoc.py index d17db77..9106a94 100644 --- a/mesonbuild/modules/hotdoc.py +++ b/mesonbuild/modules/hotdoc.py @@ -328,7 +328,7 @@ class HotdocTargetBuilder: self.cmd.extend(['--include-path', path]) if self.state.environment.coredata.get_option(mesonlib.OptionKey('werror', subproject=self.state.subproject)): - self.cmd.append('--fatal-warning') + self.cmd.append('--fatal-warnings') self.generate_hotdoc_config() target_cmd = self.build_command + ["--internal", "hotdoc"] + \ |