From patchwork Fri Sep 30 23:28:22 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 17477 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id A52B6C327E for ; Fri, 30 Sep 2022 23:28:38 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id ADB3062851; Sat, 1 Oct 2022 01:28:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1664580516; bh=/gNIajDTrXpROnh2FoBJEljECA37fxNXoV50+qPg76k=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=AGliE5oh+gEtaJHUN9fPG+i85RH8Pw2Bwk4Iy21BqT/1ZIWSTU89hRTrV0satiL4O 3uQHgzY2PuyOujoPJpOTm5fv+kM4c8NiKs+ornIJdsM/KzuRZMbb+KYS5cn0nQ/iDp j/vYf28X39YP+E9C7Np04N4VJN2b1Yl4PtfTuTI2pzHfmMdZo9rjJO7a25t5tDDvKR EC/xTH8Xwq2Xgr9YTOnjno5Mgz/Sn4gehI71ypl2DypHJPq6IdRnzmxmOHS2tK25fs lXlpaf2WuPkeeBvI6EPLyAdwep+4KSIM1xDXNN8YIjKbA8Ga5sm90SC5UrP2jWCItJ TX+LPtfpZL8tw== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 2E76561F75 for ; Sat, 1 Oct 2022 01:28:35 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Dx3+D4Z5"; dkim-atps=neutral Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 931DC8EB; Sat, 1 Oct 2022 01:28:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1664580514; bh=/gNIajDTrXpROnh2FoBJEljECA37fxNXoV50+qPg76k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Dx3+D4Z5s2mYO/ORIS4tCPRo8gQB1iIcGd0QkAjOEoobPDp5vv/NlCXJJgLgNgrtd aZSf1VX9dP8yr46NfJwTiarIVBjcKGOarmq6XcwpDYCs6EMKs3EGgHkEXdV4NQdHZ3 sSUlp8xOqUWeMy5Cf7YQ4T4mOvNjhwn6QjO8MBu8= To: libcamera devel Date: Sat, 1 Oct 2022 00:28:22 +0100 Message-Id: <20220930232826.82753-2-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220930232826.82753-1-kieran.bingham@ideasonboard.com> References: <20220930232826.82753-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 1/5] meson: Fix typo X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Kieran Bingham via libcamera-devel From: Kieran Bingham Reply-To: Kieran Bingham Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The comment for supporting the custom script on 'make dist' contains a typo. Fix it. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 72919102ad55..2c6173b4f97e 100644 --- a/meson.build +++ b/meson.build @@ -26,7 +26,7 @@ endif libcamera_version = libcamera_git_version.split('+')[0] -# This script gererates the .tarball-version file on a 'meson dist' command. +# This script generates the .tarball-version file on a 'meson dist' command. meson.add_dist_script('utils/run-dist.sh') # Configure the build environment.