diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-07-26 15:23:30 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-08-02 11:42:38 +0100 |
commit | d463f3c79ade6f678bded5f150341206750a37b7 (patch) | |
tree | 9d4d164c17260af34458443e9d4bb1466131c8bb | |
parent | 35a4ca403145c9412c5fc042fd2baa20bc21b858 (diff) |
docs/devel/build-system.rst: Correct typo in example code
One of the example meson.build fragments incorrectly quotes some
symbols as 'CONFIG_FOO`; the correct syntax here is 'CONFIG_FOO'.
(This isn't a rST formatting mistake because the example is displayed
literally; it's just the wrong kind of quote.)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20210726142338.31872-3-peter.maydell@linaro.org
-rw-r--r-- | docs/devel/build-system.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/devel/build-system.rst b/docs/devel/build-system.rst index ee660a998d..3baec158f2 100644 --- a/docs/devel/build-system.rst +++ b/docs/devel/build-system.rst @@ -235,11 +235,11 @@ Target-independent emulator sourcesets: symbol:: # Some targets have CONFIG_ACPI, some don't, so this is not enough - softmmu_ss.add(when: 'CONFIG_ACPI`, if_true: files('acpi.c'), + softmmu_ss.add(when: 'CONFIG_ACPI', if_true: files('acpi.c'), if_false: files('acpi-stub.c')) # This is required as well: - softmmu_ss.add(when: 'CONFIG_ALL`, if_true: files('acpi-stub.c')) + softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('acpi-stub.c')) Target-dependent emulator sourcesets: In the target-dependent set lives CPU emulation, some device emulation and |