From 84c2a636e74dd563229df9729abb2d62fbc1a433 Mon Sep 17 00:00:00 2001 From: Michal Sieron Date: Sun, 29 Mar 2026 23:37:09 +0200 Subject: [PATCH] postgresql: Fix append overriding value `EXTRA_OECONF:sh4 += "--disable-spinlocks"` was supposed to simply disable unsupported spinlocks, but was also overriding other configuration defined in EXTRA_OECONF above. Signed-off-by: Michal Sieron 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 6858015478..07cd121511 100644 --- a/meta-oe/recipes-dbs/postgresql/postgresql.inc +++ b/meta-oe/recipes-dbs/postgresql/postgresql.inc @@ -78,7 +78,7 @@ EXTRA_OECONF += "--disable-rpath \ --datadir=${datadir}/${BPN} \ --sysconfdir=${sysconfdir}/${BPN} \ " -EXTRA_OECONF:sh4 += "--disable-spinlocks" +EXTRA_OECONF:append:sh4 = " --disable-spinlocks" DEBUG_OPTIMIZATION:remove:mips = " -Og" DEBUG_OPTIMIZATION:append:mips = " -O"