Skip to content

Commit b5c595b

Browse files
anarazelpull[bot]
authored andcommitted
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
1 parent 41b182b commit b5c595b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ python = find_program(get_option('PYTHON'), required: true, native: true)
323323
flex = find_program(get_option('FLEX'), native: true, version: '>= 2.5.35')
324324
bison = find_program(get_option('BISON'), native: true, version: '>= 2.3')
325325
sed = find_program(get_option('SED'), 'sed', native: true)
326-
prove = find_program(get_option('PROVE'), native: true)
326+
prove = find_program(get_option('PROVE'), native: true, required: false)
327327
tar = find_program(get_option('TAR'), native: true)
328328
gzip = find_program(get_option('GZIP'), native: true)
329329
program_lz4 = find_program(get_option('LZ4'), native: true, required: false)

0 commit comments

Comments
 (0)