From patchwork Mon Sep 19 17:00:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 17381 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 AD2DFC0DA4 for ; Mon, 19 Sep 2022 17:00:16 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 0084762193; Mon, 19 Sep 2022 19:00:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1663606816; bh=wgOyoHOgNCdLMyht9+sh9FgTFVW6yMbIXw5TQbV3HN8=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=T70kSMS7p1FOjznOJPF77tEyVplYHGArHq9PgKL41eP36GENWNapOb3XY7l7fcgKt 54MOfeIOCSYlwCnqoZyJva2LR9rH7KYZwlr+7XK1jLmoAU1dJ4588qkFkD2ZFxdqeU XOqgq/xeLWpatAXrv6kOfhPk45rGQLS+tyf+ULYG9+jg0bDb7UAZ/smZxonCin6wGf +FRpQ/6jXO90rEdaUGcQzHlRp2YXOKUTyMme56T1kC6vMInXVIc08/+VhfXHjDncl4 ZFRyQNy1ApXwnCLh9DIvlfun3/PWZ3YWKvWPxHEUOHH+3R9efgmd02POLo/RLsn6q4 UE+nYXbeV98SQ== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id AC99F61F85 for ; Mon, 19 Sep 2022 19:00:14 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="ogEkHIPj"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id E32BAD02; Mon, 19 Sep 2022 19:00:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1663606814; bh=wgOyoHOgNCdLMyht9+sh9FgTFVW6yMbIXw5TQbV3HN8=; h=From:To:Cc:Subject:Date:From; b=ogEkHIPjrsgfooPZ1apWJCUb+tomPEU/Jc0Mmd0/b9oALjBgghyfqTttWV/tOQ5aI yGy7ygnG/PZQLEUNO6Acbt0oFwUayAZOT18QXAvkEKdaQMbOtLQQgP+xbcxyIjvr2Z QGhlOQYb+07hIUUrqbuWHhDALw3EEIFQkNKwPLZE= To: libcamera-devel@lists.libcamera.org Date: Mon, 19 Sep 2022 20:00:00 +0300 Message-Id: <20220919170000.12878-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] ipa: meson: Fix identation 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.build files are indented with 4 spaces, not 2. Signed-off-by: Laurent Pinchart Reviewed-by: Umang Jain Reviewed-by: Kieran Bingham --- src/ipa/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) base-commit: 74ab3f778c848b20cbf8fe299170756ff6ebab1a diff --git a/src/ipa/meson.build b/src/ipa/meson.build index e972bbe896b0..76ad5b445601 100644 --- a/src/ipa/meson.build +++ b/src/ipa/meson.build @@ -31,8 +31,8 @@ ipa_modules = get_option('ipas') # Tests require the vimc IPA, similar to vimc pipline-handler for their # execution. Include it automatically when tests are enabled. if get_option('test') and 'vimc' not in ipa_modules - message('Enabling vimc IPA to support tests') - ipa_modules += ['vimc'] + message('Enabling vimc IPA to support tests') + ipa_modules += ['vimc'] endif enabled_ipa_modules = []