From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3D94A41E64; Fri, 10 Mar 2023 12:11:59 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1177540FAE; Fri, 10 Mar 2023 12:11:58 +0100 (CET) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id ECDD540685 for ; Fri, 10 Mar 2023 12:11:56 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1678446717; x=1709982717; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=sHlQnShio0ExQXl2nlqDK9pcdlih3d5K7nI/XyjgQfo=; b=gSFaskP5MVQRn9P2s7LmycKmPYeCV5TTj9JlR8gZOnbq6SxkIYrtODGG gSH8BtNMQ6gIBpO5jCKGnxGEKxmj71zBiRuB2UXSyJuWshsMqkQS/h+AN h0lFacNbjzxVnfP0yk9bRxVLB5k3pORtJnqvdTs6aGiHoWlUov7NIYUyA s5BjV0ioz+271qKXQlw7NO31iITOTd10D6CSN4ezZAYe2asen+1UfeFxT xFhX6Gy690dne/EzObLw4rf9D3yMq9668EwPdaHr4nrqzSziI7QOXdBAo VldWBYsl09WDbbBjPDCNyA4C65JZ6ChITQZHbQXnwfxOPtqQ3kkVo3dfy g==; X-IronPort-AV: E=McAfee;i="6500,9779,10644"; a="399303564" X-IronPort-AV: E=Sophos;i="5.98,249,1673942400"; d="scan'208";a="399303564" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Mar 2023 03:11:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10644"; a="923640260" X-IronPort-AV: E=Sophos;i="5.98,249,1673942400"; d="scan'208";a="923640260" Received: from silpixa00401385.ir.intel.com ([10.237.214.22]) by fmsmga006.fm.intel.com with ESMTP; 10 Mar 2023 03:11:55 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH 23.07 1/2] build: fix case of project language name Date: Fri, 10 Mar 2023 11:11:37 +0000 Message-Id: <20230310111138.92282-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.37.2 In-Reply-To: <20230310111138.92282-1-bruce.richardson@intel.com> References: <20230310111138.92282-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org According to the meson manual [1], the project language should be given as 'c', rather than 'C' in the initial "project" function call. While meson itself does not complain about this, the "muon" project, which attempts to re-implement meson in C, does complain. /home/bruce/dpdk/meson.build:4:17: error 'C' is not a valid language 4 | project('DPDK', 'C', ^ [1] https://mesonbuild.com/Reference-manual_functions.html#project Fixes: a25a650be5f0 ("build: add infrastructure for meson and ninja builds") Signed-off-by: Bruce richardson --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f91d652bc5..992ca91e88 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017-2019 Intel Corporation -project('DPDK', 'C', +project('DPDK', 'c', # Get version number from file. # Fallback to "more" for Windows compatibility. version: run_command(find_program('cat', 'more'), -- 2.37.2