mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
gobject-introspection: avoid using += with an over-ride
Using += with an over-ride can be a source of confusion so try to avoid the construct in core recipes. The current usage functions correctly (it over-rides the default, ie empty, value of EXTRA_OECONF and then PACKAGECONFIG derived options are subsequently appended), however the += is unnecessary and can be dropped. (From OE-Core rev: e255d1aebd0e019f42c2110873ef4779bbbb5974) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
c4aa9678a8
commit
5f033859e2
@@ -102,7 +102,7 @@ EOF
|
||||
|
||||
# Configure target build to use native tools of itself and to use a qemu wrapper
|
||||
# and optionally to generate introspection data
|
||||
EXTRA_OECONF_class-target += "--enable-host-gi \
|
||||
EXTRA_OECONF_class-target = "--enable-host-gi \
|
||||
--disable-static \
|
||||
--enable-gi-cross-wrapper=${B}/g-ir-scanner-qemuwrapper \
|
||||
--enable-gi-ldd-wrapper=${B}/g-ir-scanner-lddwrapper \
|
||||
|
||||
Reference in New Issue
Block a user