diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-07-06 13:54:54 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-09 22:48:39 +0100 |
commit | 5f033859e2f538c80106fc8c2bda4ca0a7bc336b (patch) | |
tree | 45910949a7e20bd4c52042ba157c854ec5a97ffb /meta/recipes-gnome/gobject-introspection | |
parent | c4aa9678a82860839c4b174f4c42799ae1ea048c (diff) | |
download | poky-5f033859e2f538c80106fc8c2bda4ca0a7bc336b.tar.gz |
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>
Diffstat (limited to 'meta/recipes-gnome/gobject-introspection')
-rw-r--r-- | meta/recipes-gnome/gobject-introspection/gobject-introspection_1.56.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.56.1.bb b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.56.1.bb index ddec11067b..96e0d6cb08 100644 --- a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.56.1.bb +++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.56.1.bb | |||
@@ -102,7 +102,7 @@ EOF | |||
102 | 102 | ||
103 | # Configure target build to use native tools of itself and to use a qemu wrapper | 103 | # Configure target build to use native tools of itself and to use a qemu wrapper |
104 | # and optionally to generate introspection data | 104 | # and optionally to generate introspection data |
105 | EXTRA_OECONF_class-target += "--enable-host-gi \ | 105 | EXTRA_OECONF_class-target = "--enable-host-gi \ |
106 | --disable-static \ | 106 | --disable-static \ |
107 | --enable-gi-cross-wrapper=${B}/g-ir-scanner-qemuwrapper \ | 107 | --enable-gi-cross-wrapper=${B}/g-ir-scanner-qemuwrapper \ |
108 | --enable-gi-ldd-wrapper=${B}/g-ir-scanner-lddwrapper \ | 108 | --enable-gi-ldd-wrapper=${B}/g-ir-scanner-lddwrapper \ |