diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-06-29 13:05:05 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-06-29 13:05:05 +0200 |
commit | 74668cbf0fcc356faef271aa2fb42896e323f8b1 (patch) | |
tree | 8c061496d127b9298ca41ebf0ae35872e25f563d | |
parent | f5159c734fe41526805c49d62c61fb2f320531e0 (diff) | |
download | postgresql-74668cbf0fcc356faef271aa2fb42896e323f8b1.tar.gz postgresql-74668cbf0fcc356faef271aa2fb42896e323f8b1.zip |
meson: Fix some grammar usage in Meson comments
Author: Tristan Partin <tristan@neon.tech>
Discussion: https://www.postgresql.org/message-id/flat/CSPIJVUDZFKX.3KHMOAVGF94RV%40c3po
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 5d026f696e6..f446dd74ed2 100644 --- a/meson.build +++ b/meson.build @@ -150,7 +150,7 @@ cdata.set_quoted('PG_MAJORVERSION', pg_version_major.to_string()) cdata.set('PG_MAJORVERSION_NUM', pg_version_major) cdata.set('PG_MINORVERSION_NUM', pg_version_minor) cdata.set('PG_VERSION_NUM', pg_version_num) -# PG_VERSION_STR is built later, it depends compiler test results +# PG_VERSION_STR is built later, it depends on compiler test results cdata.set_quoted('CONFIGURE_ARGS', '') @@ -1674,7 +1674,7 @@ if cc.has_function_attribute('visibility:default') and \ cdata.set('HAVE_VISIBILITY_ATTRIBUTE', 1) # Only newer versions of meson know not to apply gnu_symbol_visibility = - # inlineshidden to C code as well... Any either way, we want to put these + # inlineshidden to C code as well... And either way, we want to put these # flags into exported files (pgxs, .pc files). cflags_mod += '-fvisibility=hidden' cxxflags_mod += ['-fvisibility=hidden', '-fvisibility-inlines-hidden'] |