diff options
author | Peter Eisentraut | 2025-01-24 09:26:12 +0000 |
---|---|---|
committer | Peter Eisentraut | 2025-01-24 09:26:12 +0000 |
commit | 02ed3c2bdcefab453b548bc9c7e0e8874a502790 (patch) | |
tree | b1a500223ac48cc37aaf445641ca3c79f9281c1e | |
parent | fd4c4ede708fc5affb04362bb5a8bdc3136fa963 (diff) |
meson: Fix sepgsql installation
The sepgsql.sql file should be installed under share/contrib/, not
share/extension/, since it is not an extension. This makes it match
what make install does.
Discussion: https://www.postgresql.org/message-id/flat/[email protected]
-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 a7c1efa70a8..d8085b10ee5 100644 --- a/contrib/sepgsql/meson.build +++ b/contrib/sepgsql/meson.build @@ -37,7 +37,7 @@ contrib_targets += custom_target('sepgsql.sql', command: [sed, '-e', 's,MODULE_PATHNAME,$libdir/sepgsql,g', '@INPUT@'], capture: true, install: true, - install_dir: contrib_data_args['install_dir'], + install_dir: dir_data / 'contrib', ) # TODO: implement sepgsql tests |