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 0266F1580FD for ; Sun, 29 Dec 2024 09:22:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFD96E076B; Sun, 29 Dec 2024 09:22:44 +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 856DCE076B for ; Sun, 29 Dec 2024 09:22:42 +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 88833335CB4 for ; Sun, 29 Dec 2024 09:22:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E78B297F for ; Sun, 29 Dec 2024 09:22:39 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1735464124.8a6207aae78d8f1a13cb430ecf4728d11cd471b7.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/elisp.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 8a6207aae78d8f1a13cb430ecf4728d11cd471b7 X-VCS-Branch: master Date: Sun, 29 Dec 2024 09:22:39 +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: 1228d4ea-c487-4b79-9864-79385a472197 X-Archives-Hash: 50a0a4e6b65c61632a619e3308a390c6 commit: 8a6207aae78d8f1a13cb430ecf4728d11cd471b7 Author: Ulrich Müller gentoo org> AuthorDate: Thu Dec 26 12:03:23 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Dec 29 09:22:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a6207aa elisp.eclass: Call makeinfo with --no-split option By default, makeinfo will split output files larger than 300 kB into smaller subfiles. Although this doesn't currently happen for any elisp package, it might happen in future and could break some assumptions. This is also consistent with GNU Emacs itself which installs unsplit Info files for its documentation. Signed-off-by: Ulrich Müller gentoo.org> 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 }