Skip to content

Commit 24c5b73

Browse files
committed
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/651a5baf-5c45-4a5a-a202-0c8453a4ebf8@eisentraut.org
1 parent 6c9a83f commit 24c5b73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/sepgsql/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ contrib_targets += custom_target('sepgsql.sql',
3737
command: [sed, '-e', 's,MODULE_PATHNAME,$libdir/sepgsql,g', '@INPUT@'],
3838
capture: true,
3939
install: true,
40-
install_dir: contrib_data_args['install_dir'],
40+
install_dir: dir_data / 'contrib',
4141
)
4242

4343
# TODO: implement sepgsql tests

0 commit comments

Comments
 (0)