diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-02-22 10:55:14 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-02-22 10:55:14 +0900 |
commit | 1a943d03d60e6a45036c77ca31d02ebd6e3ee169 (patch) | |
tree | 6c680db923e0dd13176e8c71db8254c9062f15f9 | |
parent | 8a8661828ae14e4d3b6beac5e8d8b37bd4e79004 (diff) | |
download | postgresql-1a943d03d60e6a45036c77ca31d02ebd6e3ee169.tar.gz postgresql-1a943d03d60e6a45036c77ca31d02ebd6e3ee169.zip |
doc: Add missing values for meson options -Dcassert and -Db_coverage
The -Dcassert and -Db_coverage that can be specified to a meson command
require values after an equal sign but the documentation did not
properly reflect that. All the other options specify the argument
values they expect, so close the gap.
Author: Jelte Fennema
Discussion: https://postgr.es/m/CAGECzQRXd1z+AoQ4tC5tqPk1_NQJohf6xwdEL=z9KgxHau2maQ@mail.gmail.com
-rw-r--r-- | doc/src/sgml/installation.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index aa7c782c3f2..0ed35d99e91 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -3034,7 +3034,7 @@ ninja install </varlistentry> <varlistentry id="configure-cassert-meson"> - <term><option>-Dcassert</option></term> + <term><option>-Dcassert={ true | false }</option></term> <listitem> <para> Enables <firstterm>assertion</firstterm> checks in the server, which @@ -3075,7 +3075,7 @@ ninja install </varlistentry> <varlistentry id="configure-b-coverage-meson"> - <term><option>-Db_coverage</option></term> + <term><option>-Db_coverage={ true | false }</option></term> <listitem> <para> If using GCC, all programs and libraries are compiled with |