From patchwork Mon Oct 10 17:32:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 17573 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 F3327C327C for ; Mon, 10 Oct 2022 17:33:26 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id C097F62D71; Mon, 10 Oct 2022 19:33:24 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1665423204; bh=dTdEWFs0yMn6lG3OUtZ1giJTgAPQdjuqfMUW/V8ueCY=; 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=xXFkHNJca0CQZJc0vymlnZp7Nux9xGYnzVaTCz7fPLdr+87keSgZoWBl4duvW8ucJ BTz5pFsEhw/pDeOik0cGXHmQBGiPG6hk/rQ5pd/lPXn6OtDIgNB0t1munP3oOjs3JK wjktf9PxWnKX6g7uJ3yXDARQ3ortk2oO+3XbOwqiXY8MIP026JLMw0yF+6sA1RxGFS 7ULEa82nDkBkbwHSV28hoGUThKoG4olGw7HSNjkXAlkTsBzdzN8mjy05Hz8vfm/e8i NcuQO0gwyGcAwoMnh+6U6rNlU8JzZvQJsK6gVO371Klo14n54WmOirtM/6v8UhBkzX Bsswh0T1K6VpQ== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 82F4C62272 for ; Mon, 10 Oct 2022 19:33:23 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="g7df18BQ"; dkim-atps=neutral Received: from Monstersaurus.ksquared.org.uk.beta.tailscale.net (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id C34B3E3A; Mon, 10 Oct 2022 19:33:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1665423203; bh=dTdEWFs0yMn6lG3OUtZ1giJTgAPQdjuqfMUW/V8ueCY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=g7df18BQnExT3BZ0uoGIVbs5ZC+Ws44MtZIpD7JRb+GpMOOZ5/TIP92UGQ09XkgMA sKVhAsnp/izJ2+L4UShnfuApgPh06iTRkKKZFSSuCjL2BvlMF+u4npQl5MuYH9Rf7V lZq9ki90+ikFtrj/APtLGE7WllWb9vfAFFQ34lNg= To: libcamera devel Date: Mon, 10 Oct 2022 18:32:10 +0100 Message-Id: <20221010173214.3547133-2-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221010173214.3547133-1-kieran.bingham@ideasonboard.com> References: <20221010173214.3547133-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 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 Reviewed-by: Eric Curtin --- 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.