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 B6FB741E88; Tue, 14 Mar 2023 00:50:57 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AA0CF41101; Tue, 14 Mar 2023 00:50:57 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id AA13140F16 for ; Tue, 14 Mar 2023 00:50:56 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id DF6392054AC8; Mon, 13 Mar 2023 16:50:55 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com DF6392054AC8 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1678751455; bh=3UvHAhg1EzaY4RKApq8mhtsbTNtX0Vuoph/4/E99ggc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=mJ9g9rRmwSt95iuc3TVlfafGrReAOk6hRFmsOkfU0YtBm1WHYhCX9J77rgXf3AxXj juFXbUaD5UTjbqrl1zE8YxcSZJlnnX/LW357zGTcr/DH0I1q+/yLzWlmhnllMsK59k NZnnC/xqkKZZR9tVFRqm5r8QKFk68MMBzVex7Ue0= Date: Mon, 13 Mar 2023 16:50:55 -0700 From: Tyler Retzlaff To: Bruce Richardson Cc: dev@dpdk.org Subject: Re: [PATCH 23.07 2/2] build: explicitly track file paths in current directory Message-ID: <20230313235055.GB23962@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230310111138.92282-1-bruce.richardson@intel.com> <20230310111138.92282-3-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230310111138.92282-3-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:38AM +0000, Bruce Richardson wrote: > To ensure proper path tracking for files being used by the build, the > "files()" function should always be used. While meson currently assumes > that bare filenames passed to commands refer to paths in the current > directory, other reimplementations of meson, e.g. muon, require the > paths to be properly tracked. Therefore, for resiliency, ensure all > paths are specified using "files()". > > Signed-off-by: Bruce Richardson Reviewed-by: Tyler Retzlaff