diff options
| author | Michal Sieron <michalwsieron@gmail.com> | 2026-03-29 23:37:09 +0200 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-03-30 19:46:42 -0700 |
| commit | 062c3cd9c3795f55987fa5d3a11dd09c3b13bb77 (patch) | |
| tree | a8a1843e8d7c4621763887ea342fe9a5d8a25ae3 | |
| parent | d26acee756b704e4a68fcc37c0fe550bbbee3886 (diff) | |
| download | meta-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.inc | 2 |
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 | " |
| 81 | EXTRA_OECONF:sh4 += "--disable-spinlocks" | 81 | EXTRA_OECONF:append:sh4 = " --disable-spinlocks" |
| 82 | 82 | ||
| 83 | DEBUG_OPTIMIZATION:remove:mips = " -Og" | 83 | DEBUG_OPTIMIZATION:remove:mips = " -Og" |
| 84 | DEBUG_OPTIMIZATION:append:mips = " -O" | 84 | DEBUG_OPTIMIZATION:append:mips = " -O" |
