aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2022-11-04 18:08:05 -0700
committerAndres Freund <andres@anarazel.de>2022-11-04 18:08:05 -0700
commitab72a31f6cc58ceda97009a5bfae27bd566a3752 (patch)
treec38c31b6848a65c4a67ea4a763455b16b8c06e17
parent34fa0ddae5cf27dd93a5855b30083185d4bb5a5b (diff)
downloadpostgresql-ab72a31f6cc58ceda97009a5bfae27bd566a3752.tar.gz
postgresql-ab72a31f6cc58ceda97009a5bfae27bd566a3752.zip
meson: Mark PROVE as not required
In the meson build the prove binary is currently not even used. It will soon be, for PGXS compatibility, but even then we should build without it around. Author: Justin Pryzby <pryzbyj@telsasoft.com> Discussion: https://postgr.es/m/20221021034040.GT16921@telsasoft.com Discussion: https://postgr.es/m/20221104235412.GE16921@telsasoft.com
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index bfacbdc0af6..ce2f223a409 100644
--- a/meson.build
+++ b/meson.build
@@ -323,7 +323,7 @@ python = find_program(get_option('PYTHON'), required: true, native: true)
flex = find_program(get_option('FLEX'), native: true, version: '>= 2.5.35')
bison = find_program(get_option('BISON'), native: true, version: '>= 2.3')
sed = find_program(get_option('SED'), 'sed', native: true)
-prove = find_program(get_option('PROVE'), native: true)
+prove = find_program(get_option('PROVE'), native: true, required: false)
tar = find_program(get_option('TAR'), native: true)
gzip = find_program(get_option('GZIP'), native: true)
program_lz4 = find_program(get_option('LZ4'), native: true, required: false)