From patchwork Mon Aug 29 01:33:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 600996 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 971E8C3DA6B for ; Mon, 29 Aug 2022 01:33:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229657AbiH2Bdu (ORCPT ); Sun, 28 Aug 2022 21:33:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42334 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229652AbiH2Bds (ORCPT ); Sun, 28 Aug 2022 21:33:48 -0400 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 206BB2F02B for ; Sun, 28 Aug 2022 18:33:48 -0700 (PDT) Received: from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id EB7D6481; Mon, 29 Aug 2022 03:33:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1661736826; bh=PReibdQQPAyTUGDZ083Pj6xGVeT1LdFwNNt0A908zM4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BzscXgm2GfnkXdQ0foIQfTTjCKc65KC0Z8HwJPa5sFEmp8fy4ukSTee47vXLvfLpn gTZZn1Nr62E/Iz6STKCNLgzyudolD3s9LL9qZKuf7ffPWFNDDjxvCogKpsoqwBu2vW 98PT7P4zrZQIqlAb2Op4NIR13O8n+PKBr6jFfECE= From: Laurent Pinchart To: linux-media@vger.kernel.org Cc: ezequiel@collabora.com, gjasny@googlemail.com, hverkuil@xs4all.nl, kieran.bingham@ideasonboard.com, mchehab@kernel.org, nicolas@ndufresne.ca, p.zabel@pengutronix.de, rosenp@gmail.com, sakari.ailus@iki.fi, sean@mess.org, user.vdr@gmail.com, xavier.claessens@collabora.com Subject: [PATCH v6 07/13] [FIXUP] meson: Replace deprecated get_cross_property() with get_external_property() Date: Mon, 29 Aug 2022 04:33:21 +0300 Message-Id: <20220829013327.5791-8-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220829013327.5791-1-laurent.pinchart@ideasonboard.com> References: <20220829013327.5791-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org The get_cross_property() function is deprecated in favour of get_external_property(), replace usage of the former with the latter. Signed-off-by: Laurent Pinchart --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 50fad53c6f26..fce8a09b390b 100644 --- a/meson.build +++ b/meson.build @@ -13,7 +13,7 @@ cpp = meson.get_compiler('cpp') have_m32 = cc.has_link_argument('-m32') have_visibility = cc.has_argument('-fvisibility=hidden') -sys_root = meson.get_cross_property('sys_root', '/') +sys_root = meson.get_external_property('sys_root', '/') fs = import('fs') i18n = import('i18n')