diff options
author | Peter Eisentraut | 2024-02-05 14:45:29 +0000 |
---|---|---|
committer | Peter Eisentraut | 2024-02-05 14:45:29 +0000 |
commit | 1ae5ace7558ea949d2f94af2fd5eb145d5558659 (patch) | |
tree | a59a13852680d736319eb56f01ea9aa50e468d6b /src | |
parent | b96115acb8a0e08a46877c2b8ef2a7b5560b371b (diff) |
Fix meson installation of new generated files
Fix for 9b1a6f50b9: We want to install catalog/syscache_ids.h but not
catalog/syscache_info.h. The meson code has this backwards. The
makefiles are ok.
Reported-by: Aleksander Alekseev <[email protected]>
Discussion: https://www.postgresql.org/message-id/CAJ7c6TMDGmAiozDjJQ3%3DP3cd-1BidC_GpitcAuU0aqq-r1eSoQ%40mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/catalog/meson.build b/src/include/catalog/meson.build index 6be76dca1dd..6b3c56c20e8 100644 --- a/src/include/catalog/meson.build +++ b/src/include/catalog/meson.build @@ -114,8 +114,8 @@ output_install = [ dir_data, dir_data, dir_include_server / 'catalog', - false, dir_include_server / 'catalog', + false, dir_include_server / 'catalog', ] |