From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0BA5C15800A for ; Thu, 3 Aug 2023 21:15:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DE6C2BC01C; Thu, 3 Aug 2023 21:15:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 342BA2BC01C for ; Thu, 3 Aug 2023 21:15:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 02A36335D75 for ; Thu, 3 Aug 2023 21:15:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F0E9B8B for ; Thu, 3 Aug 2023 21:15:11 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1691097308.c96f8a304f4486f4a491cd351a5b4ace0f7b00de.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: cnf/ X-VCS-Repository: proj/portage X-VCS-Files: cnf/meson.build X-VCS-Directories: cnf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c96f8a304f4486f4a491cd351a5b4ace0f7b00de X-VCS-Branch: master Date: Thu, 3 Aug 2023 21:15:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c4ef7798-cf10-43de-afe9-9f0288de748e X-Archives-Hash: b0ad882d0149d334886c5d51103971f4 commit: c96f8a304f4486f4a491cd351a5b4ace0f7b00de Author: James Le Cuirot gentoo org> AuthorDate: Thu Aug 3 18:15:38 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Aug 3 21:15:08 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c96f8a30 Fix Meson CPU detection for make.conf I used the CPU name rather than the family by mistake. Signed-off-by: James Le Cuirot gentoo.org> Signed-off-by: Sam James gentoo.org> cnf/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cnf/meson.build b/cnf/meson.build index 00af62085..d0d4c9ab1 100644 --- a/cnf/meson.build +++ b/cnf/meson.build @@ -59,7 +59,7 @@ if eprefix != '' ) endif -arch = host_machine.cpu() +arch = host_machine.cpu_family() arch = { 'aarch64' : 'arm64',