Skip to content

Commit ab72a31

Browse files
committed
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 <[email protected]> Discussion: https://postgr.es/m/[email protected] Discussion: https://postgr.es/m/[email protected]
1 parent 34fa0dd commit ab72a31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson.build

+1-1
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)