diff options
author | Andres Freund <andres@anarazel.de> | 2023-11-17 16:29:48 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2023-11-17 16:34:01 -0800 |
commit | be08a359db7231f81f8d64975f4babf6dd24bfec (patch) | |
tree | 3eabdd7b34d3a7941e81b21f71b3ade252122e5c | |
parent | 2cf50585e54a7b0c6bc62a087c69043ae57e4252 (diff) |
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
-rw-r--r-- | contrib/sepgsql/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/sepgsql/meson.build b/contrib/sepgsql/meson.build index 5dbbe312b9f..c8e518b49c0 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@'], |