summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Sieron <michalwsieron@gmail.com>2026-03-29 23:37:09 +0200
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-03-30 19:46:42 -0700
commit062c3cd9c3795f55987fa5d3a11dd09c3b13bb77 (patch)
treea8a1843e8d7c4621763887ea342fe9a5d8a25ae3
parentd26acee756b704e4a68fcc37c0fe550bbbee3886 (diff)
downloadmeta-openembedded-062c3cd9c3795f55987fa5d3a11dd09c3b13bb77.tar.gz
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 <michalwsieron@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
-rw-r--r--meta-oe/recipes-dbs/postgresql/postgresql.inc2
1 files changed, 1 insertions, 1 deletions
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 \
78 --datadir=${datadir}/${BPN} \ 78 --datadir=${datadir}/${BPN} \
79 --sysconfdir=${sysconfdir}/${BPN} \ 79 --sysconfdir=${sysconfdir}/${BPN} \
80" 80"
81EXTRA_OECONF:sh4 += "--disable-spinlocks" 81EXTRA_OECONF:append:sh4 = " --disable-spinlocks"
82 82
83DEBUG_OPTIMIZATION:remove:mips = " -Og" 83DEBUG_OPTIMIZATION:remove:mips = " -Og"
84DEBUG_OPTIMIZATION:append:mips = " -O" 84DEBUG_OPTIMIZATION:append:mips = " -O"