diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-06-29 13:04:04 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-06-29 13:04:04 +0200 |
commit | f5159c734fe41526805c49d62c61fb2f320531e0 (patch) | |
tree | 73f68bc30fa5c4da4e600c3e8a467203414e8076 | |
parent | 45c88eecb4a6cf286b2bd8fc977ccf932525933a (diff) | |
download | postgresql-f5159c734fe41526805c49d62c61fb2f320531e0.tar.gz postgresql-f5159c734fe41526805c49d62c61fb2f320531e0.zip |
meson: Mention the correct way to disable readline support
Using false to disable a feature option is incorrect.
Author: Tristan Partin <tristan@neon.tech>
Discussion: https://www.postgresql.org/message-id/flat/CSPIJVUDZFKX.3KHMOAVGF94RV%40c3po
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 469cb4585cf..5d026f696e6 100644 --- a/meson.build +++ b/meson.build @@ -1131,7 +1131,7 @@ if not get_option('readline').disabled() error('''readline header not found If you have @0@ already installed, see meson-log/meson-log.txt for details on the failure. It is possible the compiler isn't looking in the proper directory. -Use -Dreadline=false to disable readline support.'''.format(readline_dep)) +Use -Dreadline=disabled to disable readline support.'''.format(readline_dep)) endif check_funcs = [ |