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 5223E15815E for ; Fri, 9 Feb 2024 06:16:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B803E29B0; Fri, 9 Feb 2024 06:16:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 710DEE29B0 for ; Fri, 9 Feb 2024 06:16:43 +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 ADFB634308F for ; Fri, 9 Feb 2024 06:16:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B25414BD for ; Fri, 9 Feb 2024 06:16:41 +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: <1707459233.bff7bb77cc9d7f8219c95a8e6a35459fec2b458a.sam@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: wrappers/site/ X-VCS-Repository: proj/crossdev X-VCS-Files: wrappers/site/mipsel-linux-gnu X-VCS-Directories: wrappers/site/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bff7bb77cc9d7f8219c95a8e6a35459fec2b458a X-VCS-Branch: master Date: Fri, 9 Feb 2024 06:16:41 +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: 663da8da-9e75-40c9-92ce-b0895f8c0f4f X-Archives-Hash: 9b11deac41e263914bd7089604bc3d3b commit: bff7bb77cc9d7f8219c95a8e6a35459fec2b458a Author: Sam James gentoo org> AuthorDate: Fri Feb 9 06:13:53 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 9 06:13:53 2024 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=bff7bb77 wrappers: mipsel-linux-gnu: fix ac_cv_type_uid_t cache value Reported by matoro when building coreutils for mipsel-unknown-linux-gnu. If autoconf-2.72 is used, apparently this shows up, and the coreutils-9.4 dist tarball was indeed built with it... The symptoms are similar to bug #885485 but it's a different cause -- we were exporting a dodgy cache value with a missing '$': ``` configure:14771: checking for uid_t configure:14771: result: {ac_cv_type_uid_t=yes} ``` ``` ac_cv_type_uid_t='{ac_cv_type_uid_t=yes}' ``` ``` $ rg ac_cv_type_uid_t wrappers/site/mipsel-linux-gnu:115:ac_cv_type_uid_t={ac_cv_type_uid_t=yes} ``` Bug: https://bugs.gentoo.org/885485 Signed-off-by: Sam James gentoo.org> wrappers/site/mipsel-linux-gnu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/site/mipsel-linux-gnu b/wrappers/site/mipsel-linux-gnu index 7ecdba1..c96fad1 100644 --- a/wrappers/site/mipsel-linux-gnu +++ b/wrappers/site/mipsel-linux-gnu @@ -112,7 +112,7 @@ mono_cv_uscore=${mono_cv_uscore=no} ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=no} ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} ac_cv_func_memcmp_working=${ac_cv_func_memcmp_working=yes} -ac_cv_type_uid_t={ac_cv_type_uid_t=yes} +ac_cv_type_uid_t=${ac_cv_type_uid_t=yes} # bash bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=no}