diff options
| author | Randy Li <ayaka@soulik.info> | 2021-10-25 11:37:43 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-27 09:46:41 +0100 |
| commit | 15487d272f4af9a62b81bc77e1195bd77ef7b7bb (patch) | |
| tree | 2bcb3757041957e8f6b0256fae12c028369c15e6 | |
| parent | b9c1107ae6ee4a1e4e03c7921b1ef8891d37af42 (diff) | |
| download | poky-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>
| -rw-r--r-- | meta/recipes-devtools/meson/nativesdk-meson_0.59.2.bb | 6 |
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 | |||
| 24 | strip = @STRIP | 24 | strip = @STRIP |
| 25 | pkgconfig = 'pkg-config' | 25 | pkgconfig = 'pkg-config' |
| 26 | 26 | ||
| 27 | [properties] | 27 | [built-in options] |
| 28 | needs_exe_wrapper = true | ||
| 29 | c_args = @CFLAGS | 28 | c_args = @CFLAGS |
| 30 | c_link_args = @LDFLAGS | 29 | c_link_args = @LDFLAGS |
| 31 | cpp_args = @CPPFLAGS | 30 | cpp_args = @CPPFLAGS |
| 32 | cpp_link_args = @LDFLAGS | 31 | cpp_link_args = @LDFLAGS |
| 32 | |||
| 33 | [properties] | ||
| 34 | needs_exe_wrapper = true | ||
| 33 | sys_root = @OECORE_TARGET_SYSROOT | 35 | sys_root = @OECORE_TARGET_SYSROOT |
| 34 | 36 | ||
| 35 | [host_machine] | 37 | [host_machine] |
