From patchwork Thu Jan 5 10:05:48 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 18096 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 BFA46C322E for ; Thu, 5 Jan 2023 10:05:55 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 38F77625CF; Thu, 5 Jan 2023 11:05:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1672913155; bh=hD9uzV6kkda0BUp+LQmaSOeyKokEciej0TOdPX+txlg=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=kFKJJiUY+UmNa1tMIVHgc0tpexcPofm/6T9Enx7/UH6HoCsG7VmyQMLJfm4E/GNQN s1HvGf/hGwGL+7hn7fbHbS6oKu2//lnKmrqp9+iFaQDRJlUfam74/uZCtB5d8Wdywb DaL+V8cOP60LcccrPxSL1Nw/OKqMRK5STX53fqw/cx1A+x1Fm9fqpQbHIZVxIS4XXc UAshU8qrUX5CF6F2rmM38mQ7Ws4QwbTzDiRwRzlmMI+JTiEc96CF0CG6WuydMrHDfh 986aug+EosHS4JdLgMIsBLHaaPJQCNvRYBd1uRp0udjD/jyym+pVt8Y6BRtmkaDZLY vzVXVXIIcF+kQ== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 18A59625CC for ; Thu, 5 Jan 2023 11:05:53 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="BkKR6+QO"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 7F6CD49C for ; Thu, 5 Jan 2023 11:05:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1672913152; bh=hD9uzV6kkda0BUp+LQmaSOeyKokEciej0TOdPX+txlg=; h=From:To:Subject:Date:From; b=BkKR6+QOFHZ1p3zXCocAVGKTDYD9Q9o1Pyx3O+0PKLXTq7/pea9X+zkL5ff9YTkdO qWdvKU9OYUN+cOnq4YCtXhaD5sIneOa6KIvLn05NkfCjxr+yBNtcxzAa3L9yQbG974 dKE5etSamzIKy8RsJspYkfkqArsze+6i+noz4/pU= To: libcamera-devel@lists.libcamera.org Date: Thu, 5 Jan 2023 12:05:48 +0200 Message-Id: <20230105100548.18155-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.38.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] Replace deprecated 'meson' with 'meson setup' 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: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Meson has deprecated implicit usage of the setup command. Update the build instructions to use 'meson setup' explicitly. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) base-commit: e1b81401cafa2e071b0903c0afe8363e84c11ede diff --git a/README.rst b/README.rst index e9dd4207ae55..34b6b49f3575 100644 --- a/README.rst +++ b/README.rst @@ -34,7 +34,7 @@ To fetch the sources, build and install: git clone https://git.libcamera.org/libcamera/libcamera.git cd libcamera - meson build + meson setup build ninja -C build install Dependencies