summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRandy Li <ayaka@soulik.info>2021-10-25 11:37:43 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-27 09:46:41 +0100
commit15487d272f4af9a62b81bc77e1195bd77ef7b7bb (patch)
tree2bcb3757041957e8f6b0256fae12c028369c15e6 /meta
parentb9c1107ae6ee4a1e4e03c7921b1ef8891d37af42 (diff)
downloadpoky-15487d272f4af9a62b81bc77e1195bd77ef7b7bb.tar.gz
meson: move lang args to the right section
After meson 0.56.0, <lang>_args and <lang>_link_args would be regarded as meson built-in options. (From OE-Core rev: 50c8f654e9006a7c902dd76f75082d4f8d668d0c) Signed-off-by: Hsia-Jun(Randy) Li <randy.li@synaptics.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/meson/nativesdk-meson_0.59.2.bb6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-devtools/meson/nativesdk-meson_0.59.2.bb b/meta/recipes-devtools/meson/nativesdk-meson_0.59.2.bb
index 0e76cc78f8..5657397ddc 100644
--- a/meta/recipes-devtools/meson/nativesdk-meson_0.59.2.bb
+++ b/meta/recipes-devtools/meson/nativesdk-meson_0.59.2.bb
@@ -24,12 +24,14 @@ nm = @NM
24strip = @STRIP 24strip = @STRIP
25pkgconfig = 'pkg-config' 25pkgconfig = 'pkg-config'
26 26
27[properties] 27[built-in options]
28needs_exe_wrapper = true
29c_args = @CFLAGS 28c_args = @CFLAGS
30c_link_args = @LDFLAGS 29c_link_args = @LDFLAGS
31cpp_args = @CPPFLAGS 30cpp_args = @CPPFLAGS
32cpp_link_args = @LDFLAGS 31cpp_link_args = @LDFLAGS
32
33[properties]
34needs_exe_wrapper = true
33sys_root = @OECORE_TARGET_SYSROOT 35sys_root = @OECORE_TARGET_SYSROOT
34 36
35[host_machine] 37[host_machine]