From patchwork Wed Sep 23 14:39:48 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 9749 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 6E4F9C3B5B for ; Wed, 23 Sep 2020 14:39:59 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 3FCCB62FE8; Wed, 23 Sep 2020 16:39:59 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="JKROxbS3"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id B449462FD2 for ; Wed, 23 Sep 2020 16:39:54 +0200 (CEST) Received: from Q.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 550361226; Wed, 23 Sep 2020 16:39:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1600871994; bh=iaSn0JTQEPGQJT6H8/8ycnRAvBQ4KHNISSigJ5cQyUY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JKROxbS3ssj+37VPGMCcfCBlgctf8twsow3dE+uXgGjjRHt1owT3xI1byhSIv3qtE XrFCwRgNCIifpZ2xNe3nYWeY1lzUKN5wxyvVIhtzpbrpGRmpIq15RBp+S4RvjuChba vCiF/+E9mUtaX0aHBm7f7Si/G95gj0IBvNL9JaSw= From: Kieran Bingham To: libcamera devel Date: Wed, 23 Sep 2020 15:39:48 +0100 Message-Id: <20200923143949.310439-4-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200923143949.310439-1-kieran.bingham@ideasonboard.com> References: <20200923143949.310439-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 3/4] src: meson: Rename ipa_gen_priv_key to gen_ipa_priv_key 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: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Refactor the naming of the custom command variable to match the style used in the other custom target generators, and the name of the script. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- I've chosen to keep this as a separate patch to keep the rename and move distinct. --- src/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meson.build b/src/meson.build index 0c5b64d68c15..db155e68e848 100644 --- a/src/meson.build +++ b/src/meson.build @@ -4,10 +4,10 @@ subdir('android') openssl = find_program('openssl', required : true) if openssl.found() - ipa_gen_priv_key = files('ipa/gen-ipa-priv-key.sh') + gen_ipa_priv_key = files('ipa/gen-ipa-priv-key.sh') ipa_priv_key = custom_target('ipa-priv-key', output : [ 'ipa-priv-key.pem' ], - command : [ ipa_gen_priv_key, '@OUTPUT@' ]) + command : [ gen_ipa_priv_key, '@OUTPUT@' ]) config_h.set('HAVE_IPA_PUBKEY', 1) ipa_sign_module = true else