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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 63DF31580FD for ; Fri, 27 Dec 2024 08:07:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 553F5E07D3; Fri, 27 Dec 2024 08:07:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15F85E079E for ; Fri, 27 Dec 2024 08:07:21 +0000 (UTC) From: Sam James To: Ulrich =?utf-8?Q?M=C3=BCller?= Cc: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] [PATCH] elisp.eclass: Call makeinfo with --no-split option In-Reply-To: <20241226120421.948-1-ulm@gentoo.org> ("Ulrich =?utf-8?Q?M?= =?utf-8?Q?=C3=BCller=22's?= message of "Thu, 26 Dec 2024 13:04:08 +0100") Organization: Gentoo References: <20241226120421.948-1-ulm@gentoo.org> User-Agent: mu4e 1.12.7; emacs 31.0.50 Date: Fri, 27 Dec 2024 08:07:17 +0000 Message-ID: <878qs1tuq2.fsf@gentoo.org> 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 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: cd02ea16-394b-4ab2-aa15-6b644164d6fa X-Archives-Hash: 8b793efc6780a4b4ad0a57d2abe380e1 Ulrich M=C3=BCller writes: > Signed-off-by: Ulrich M=C3=BCller (Why?) > --- > eclass/elisp.eclass | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass > index 1fa8aab29753..e2f629edf132 100644 > --- a/eclass/elisp.eclass > +++ b/eclass/elisp.eclass > @@ -139,7 +139,7 @@ elisp_src_configure() { :; } > elisp_src_compile() { > elisp-compile *.el > if [[ -n ${ELISP_TEXINFO} ]]; then > - makeinfo ${ELISP_TEXINFO} || die > + makeinfo --no-split ${ELISP_TEXINFO} || die > fi > }