diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-06-13 09:31:52 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-07-01 13:58:08 +0100 |
| commit | 3c1c56ec07d6f507077458faf5818ff4a88dce98 (patch) | |
| tree | e6a795917e7fcbb7f57deb3878583470cf55fc26 /meta/recipes-gnome | |
| parent | 45aeae0075ead6f6509048857c4de213a7a302a8 (diff) | |
| download | poky-3c1c56ec07d6f507077458faf5818ff4a88dce98.tar.gz | |
native/nativesdk: Stop overriding unprefixed *FLAGS variables
We're currently encouraging an "arms race" with the FLAGS variables since
a recipe might want to set a specific flag for all variants but to do so,
+= won't work due to the assignment in the native/nativesdk class files. This
means recipes are using append.
Since the default variables are constructed out of TARGET_XXX variables and
we redefine these, there is no need to re-define the un-prefixed variables. If
we drop that, the += appends and similar work and recipes don't have to resort
to append.
Change the classes and cleanup a number of recipes to adapt to the change. This
change will result in some flags appearing to some native/nativesdk variants
but that is probably what was originally expected anyway.
(From OE-Core rev: a157b2f9d93428ca21265cc860a3b58b3698b3aa)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome')
| -rw-r--r-- | meta/recipes-gnome/gtk+/gtk4_4.14.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gtk+/gtk4_4.14.4.bb b/meta/recipes-gnome/gtk+/gtk4_4.14.4.bb index 51c37e1a79..47e6298370 100644 --- a/meta/recipes-gnome/gtk+/gtk4_4.14.4.bb +++ b/meta/recipes-gnome/gtk+/gtk4_4.14.4.bb | |||
| @@ -79,7 +79,7 @@ PACKAGECONFIG[vulkan] = "-Dvulkan=enabled,-Dvulkan=disabled, vulkan-loader vulka | |||
| 79 | 79 | ||
| 80 | # Disable int-conversion warning as error until [1] is fixed | 80 | # Disable int-conversion warning as error until [1] is fixed |
| 81 | # [1] https://gitlab.gnome.org/GNOME/gtk/-/issues/6033 | 81 | # [1] https://gitlab.gnome.org/GNOME/gtk/-/issues/6033 |
| 82 | CFLAGS:append = " -Wno-error=int-conversion" | 82 | CFLAGS += "-Wno-error=int-conversion" |
| 83 | 83 | ||
| 84 | LIBV = "4.0.0" | 84 | LIBV = "4.0.0" |
| 85 | 85 | ||
