From 76639bb77aaeb03a2b3903f5be83c14c95a6c474 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 6 Aug 2026 05:02:58 +0000 Subject: [PATCH] postgresql: drop pg_config_ext.h from oe_multilib_header call PostgreSQL 18.4 upstream removed pg_config_ext.h entirely (both the top-level and postgresql/server/ copies) -- no source file in the 18.4 tree references it anymore. Keeping it in the oe_multilib_header call caused a do_install error ("Unable to find header pg_config_ext.h") during the ptest regression rebuild after the 17.10 -> 18.4 upgrade. AI-Generated: Uses Claude Code Signed-off-by: Khem Raj --- meta-oe/recipes-dbs/postgresql/postgresql.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-dbs/postgresql/postgresql.inc b/meta-oe/recipes-dbs/postgresql/postgresql.inc index e687399493..5f255be33d 100644 --- a/meta-oe/recipes-dbs/postgresql/postgresql.inc +++ b/meta-oe/recipes-dbs/postgresql/postgresql.inc @@ -244,7 +244,7 @@ INITSCRIPT_PARAMS = "start 64 . stop 36 0 1 2 3 4 5 6 ." do_install:append() { # install contrib oe_runmake DESTDIR=${D} -C contrib install - oe_multilib_header pg_config.h pg_config_ext.h ecpg_config.h postgresql/server/pg_config.h postgresql/server/pg_config_ext.h + oe_multilib_header pg_config.h ecpg_config.h postgresql/server/pg_config.h # install tutorial install -d -m 0755 ${D}${libdir}/${BPN}/tutorial install ${B}/src/tutorial/* ${D}${libdir}/${BPN}/tutorial