From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 49EF045B6A; Fri, 18 Oct 2024 18:02:22 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 36AFE402B8; Fri, 18 Oct 2024 18:02:22 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id B11DC402B8 for ; Fri, 18 Oct 2024 18:02:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1729267340; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=okYvkHojcZR5I6VrN8PTr8qonkJZFBj2rHe4sqFPfP0=; b=dI/t00NiG7poK9aZatqmcTQIYeZ/dxKh7WflvRxwgj54VFMwCajzFqt5A9jl5NcH1f2DM1 xLhovtUZV5HBJP+/OY/ZyCN5ecf5vZS8i4JZ6VbWQ7pTvmDMpL+xCMWYp2ca4hx4DjaZCa TmGjTRiDveY4JFttmKmJyxK7HGBS2tQ= Received: from mx-prod-mc-02.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-101-nau6ZOa0MLyS-GtwiD9xMQ-1; Fri, 18 Oct 2024 12:02:16 -0400 X-MC-Unique: nau6ZOa0MLyS-GtwiD9xMQ-1 Received: from mx-prod-int-05.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-05.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.17]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-02.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 022351955D9B; Fri, 18 Oct 2024 16:02:13 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.57]) by mx-prod-int-05.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id D99AE19560A3; Fri, 18 Oct 2024 16:02:09 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Nithin Dabilpuram , Kiran Kumar K , Sunil Kumar Kori , Satha Rao , Harman Kalra , Chengwen Feng , Robin Jarry , Bruce Richardson Subject: [PATCH] common/cnxk: replace deprecated function for cross compilation Date: Fri, 18 Oct 2024 18:00:43 +0200 Message-ID: <20241018160043.1265490-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.0 on 10.30.177.17 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Some (newly introduced) use of "get_cross_property" was missed. Convert to get_external_property. Fixes: b0d0c84b3c0f ("build: replace deprecated function for cross compilation") Signed-off-by: David Marchand --- drivers/common/cnxk/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/cnxk/meson.build b/drivers/common/cnxk/meson.build index dc2ddf1f20..abb0f6f01f 100644 --- a/drivers/common/cnxk/meson.build +++ b/drivers/common/cnxk/meson.build @@ -92,7 +92,7 @@ sources += files('cnxk_telemetry_bphy.c', ) if meson.is_cross_build() - soc_type = meson.get_cross_property('platform', '') + soc_type = meson.get_external_property('platform', '') else soc_type = platform endif -- 2.46.2