Skip to content

Commit fce50b9

Browse files
peteredutow
authored andcommitted
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 a2141f8 commit fce50b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/sepgsql/meson.build

Lines changed: 1 addition & 1 deletion
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)