[V1] framework/dts: change the default build type from makefile to meson
Commit Message
As now dpdk only support meson build, so change the default build
type to meson
Signed-off-by: LihongX Ma <lihongx.ma@intel.com>
---
framework/dts.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
> As now dpdk only support meson build, so change the default build type to
> meson
>
> Signed-off-by: LihongX Ma <lihongx.ma@intel.com>
Applied
@@ -93,7 +93,7 @@ def dts_parse_param(config, section):
try:
buildtype = config.get(section, 'build_type').split('=')[-1]
except:
- buildtype = 'makefile'
+ buildtype = 'meson'
buildtype = buildtype.lower()
settings.save_global_setting(settings.HOST_BUILD_TYPE_SETTING, buildtype)