diff options
| author | Peter Eisentraut | 2024-03-14 05:57:16 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2024-03-14 06:11:21 +0000 |
| commit | 6ab2e8385d55e0b73bb8bbc41d9c286f5f7f357f (patch) | |
| tree | 7c3abafda242ca2277bf70b17a95f2d5dabaf454 /src/tools/pginclude | |
| parent | 6cb1b632b354518a595f1b23bfbac28a798f7f1c (diff) | |
Put genbki.pl output into src/include/catalog/ directly
With the makefile rules, the output of genbki.pl was written to
src/backend/catalog/, and then the header files were linked to
src/include/catalog/.
This changes it so that the output files are written directly to
src/include/catalog/. This makes the logic simpler, and it also makes
the behavior consistent with the meson build system. Also, the list
of catalog files is now kept in parallel in
src/include/catalog/{meson.build,Makefile}, while before the makefiles
had it in src/backend/catalog/Makefile.
Reviewed-by: Andreas Karlsson <andreas@proxel.se>
Discussion: https://www.postgresql.org/message-id/flat/21b74bdc-183d-4dd5-9c27-9378d178f459@eisentraut.org
Diffstat (limited to 'src/tools/pginclude')
| -rwxr-xr-x | src/tools/pginclude/headerscheck | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tools/pginclude/headerscheck b/src/tools/pginclude/headerscheck index 5c12ab99b8b..a59be39307e 100755 --- a/src/tools/pginclude/headerscheck +++ b/src/tools/pginclude/headerscheck @@ -142,8 +142,6 @@ do test "$f" = src/include/common/unicode_nonspacing_table.h && continue test "$f" = src/include/common/unicode_east_asian_fw_table.h && continue - test "$f" = src/backend/catalog/syscache_ids.h && continue - test "$f" = src/backend/catalog/syscache_info.h && continue test "$f" = src/include/catalog/syscache_ids.h && continue test "$f" = src/include/catalog/syscache_info.h && continue |
