From 823eb3db1c50a6b8a89ebedc1db96b14de140183 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Fri, 17 Nov 2023 16:29:48 -0800 Subject: [PATCH] meson: Fix missing dependency from install-quiet to sepgsql.sql This could lead to an error like ERROR: File 'contrib/sepgsql/sepgsql.sql' could not be found Backpatch: 16-, where meson was added --- contrib/sepgsql/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/sepgsql/meson.build b/contrib/sepgsql/meson.build index 5dbbe312b9..c8e518b49c 100644 --- a/contrib/sepgsql/meson.build +++ b/contrib/sepgsql/meson.build @@ -31,7 +31,7 @@ sepgsql = shared_module('sepgsql', ) contrib_targets += sepgsql -custom_target('sepgsql.sql', +contrib_targets += custom_target('sepgsql.sql', input: 'sepgsql.sql.in', output: 'sepgsql.sql', command: [sed, '-e', 's,MODULE_PATHNAME,$libdir/sepgsql,g', '@INPUT@'],