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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 814FA158041 for ; Tue, 26 Mar 2024 16:58:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC11A2BC01B; Tue, 26 Mar 2024 16:58:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 727C02BC013 for ; Tue, 26 Mar 2024 16:58:12 +0000 (UTC) Received: by mail-ej1-f45.google.com with SMTP id a640c23a62f3a-a46d0a8399aso1127980766b.1 for ; Tue, 26 Mar 2024 09:58:11 -0700 (PDT) X-Gm-Message-State: AOJu0YyAnDrQa3nQ3fKK8HU7C6BfaI3gBay0/30VfiyLIowEnyhKullt 3wjChvvZ2a4OrTYnRp/Gl48pH9kgcr4HLK2+gVVqZ8iObawNiM7ej55HzRaYDF0AvMkxJq4BfKY 5jVCdVP2kXXWXIpXvNx1MjsMgnFY= X-Google-Smtp-Source: AGHT+IE1Wl5tlQcCegMzhw1Q/0yR47fUbaf0ZnNLCmyGjuQiQwuDSLpuKKNOqxSva3/HYZdnB/+eQRAnKGQgNiNv5bw= X-Received: by 2002:a17:906:ad81:b0:a4a:3861:d63f with SMTP id la1-20020a170906ad8100b00a4a3861d63fmr1701560ejb.21.1711472288979; Tue, 26 Mar 2024 09:58:08 -0700 (PDT) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 References: <20240326150152.1932785-1-floppym@gentoo.org> <20240326150152.1932785-2-floppym@gentoo.org> <8800cc9d191aebeb15604c42087cd5cf9dcad819.camel@gentoo.org> In-Reply-To: <8800cc9d191aebeb15604c42087cd5cf9dcad819.camel@gentoo.org> From: Mike Gilbert Date: Tue, 26 Mar 2024 12:57:57 -0400 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [gentoo-dev] [PATCH 2/2] sys-apps/systemd-utils: add workaround for no-multilib To: gentoo-dev@lists.gentoo.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 8f3825f8-0f4b-4cf6-8bc1-97cb51367dbb X-Archives-Hash: 998f1f5f4f2fa07ab1401ab55dfc2ee5 On Tue, Mar 26, 2024 at 12:51=E2=80=AFPM Micha=C5=82 G=C3=B3rny wrote: > > On Tue, 2024-03-26 at 11:01 -0400, Mike Gilbert wrote: > > meson.build has some logic to build ia32 EFI binaries on x86_64 if the > > toolchain is compatible. Rather than trying to reproduce this logic in > > the ebuild, just try to build it and ignore any failures. > > > > If meson.build actually defines the targets but we have some other > > compile error, this will move the failure to the install phase instead. > > > > That's not a correct use of nonfatal. It is supposed to be used to > provide customized error handling (e.g. cleanup step before dying), not > a cheap way to ignore errors. I disagree; the error will not go unhandled, it's just being deferred until later.