From bc06fda7198d182dce73f39cfff8e4724e00b12d Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 4 May 2022 14:38:02 +0200 Subject: [PATCH 1/7] meson: Put genbki header files back into original order The order affects the output order in postgres.bki and other files. This makes it match the order in the makefiles. --- src/include/catalog/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/catalog/meson.build b/src/include/catalog/meson.build index b2acc3ce30..813a963493 100644 --- a/src/include/catalog/meson.build +++ b/src/include/catalog/meson.build @@ -30,7 +30,6 @@ catalog_headers = [ 'pg_conversion.h', 'pg_depend.h', 'pg_database.h', - 'pg_parameter_acl.h', 'pg_db_role_setting.h', 'pg_tablespace.h', 'pg_authid.h', @@ -54,6 +53,7 @@ catalog_headers = [ 'pg_seclabel.h', 'pg_shseclabel.h', 'pg_collation.h', + 'pg_parameter_acl.h', 'pg_partitioned_table.h', 'pg_range.h', 'pg_transform.h', -- 2.35.1