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 A324D41E88; Tue, 14 Mar 2023 00:50:39 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 34BAC410D1; Tue, 14 Mar 2023 00:50:39 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 751F140F16 for ; Tue, 14 Mar 2023 00:50:38 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id B70672054AC8; Mon, 13 Mar 2023 16:50:37 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com B70672054AC8 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1678751437; bh=eE4f5NmC+J+d60eNJCrOHEJu/HPMwMBzRRE4nr1fjIA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=sZfWOM+5uH+yGlr1stQjARMPaOva3/02OSXjnk1e4beZdRWj5mgEjhoWKWE1d6x8A Taswo2Gwd8uDEcwfwWLd4GO87PzP/SXl3N2Vhjxd/jMAv6Pdil85rWIK+ccjjms9rX a7J8xAXPT2bRLZSRGnvGJpLNz/h6AmIaS1aOiaQk= Date: Mon, 13 Mar 2023 16:50:37 -0700 From: Tyler Retzlaff To: Bruce Richardson Cc: dev@dpdk.org Subject: Re: [PATCH 23.07 1/2] build: fix case of project language name Message-ID: <20230313235037.GA23962@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230310111138.92282-1-bruce.richardson@intel.com> <20230310111138.92282-2-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230310111138.92282-2-bruce.richardson@intel.com> User-Agent: Mutt/1.5.21 (2010-09-15) 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 On Fri, Mar 10, 2023 at 11:11:37AM +0000, Bruce Richardson wrote: > 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 > --- Reviewed-by: Tyler Retzlaff