[V1] framework/dts: change the default build type from makefile to meson

Message ID 1603847457-23288-1-git-send-email-lihongx.ma@intel.com (mailing list archive)
State Accepted
Headers
Series [V1] framework/dts: change the default build type from makefile to meson |

Commit Message

Ma, LihongX Oct. 28, 2020, 1:10 a.m. UTC
  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

Tu, Lijuan Nov. 3, 2020, 2:32 a.m. UTC | #1
> 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
  

Patch

diff --git a/framework/dts.py b/framework/dts.py
index 697602d..e4cc53f 100644
--- a/framework/dts.py
+++ b/framework/dts.py
@@ -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)