From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1704030-garchives=archives.gentoo.org@lists.gentoo.org> 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 8B0E11580FD for <garchives@archives.gentoo.org>; Sun, 29 Dec 2024 09:23:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F2CFE0729; Sun, 29 Dec 2024 09:23:49 +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 1028DE0729 for <gentoo-commits@lists.gentoo.org>; Sun, 29 Dec 2024 09:23:49 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4EBBE335CB4 for <gentoo-commits@lists.gentoo.org>; Sun, 29 Dec 2024 09:23:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCB8197F for <gentoo-commits@lists.gentoo.org>; Sun, 29 Dec 2024 09:23:46 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> 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" <ulm@gentoo.org> Message-ID: <1735464208.9023b0d68d8c7ab365852cf3a533a41219516987.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: eclass/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: eclass/elisp.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 9023b0d68d8c7ab365852cf3a533a41219516987 X-VCS-Branch: master Date: Sun, 29 Dec 2024 09:23:46 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fe094e69-90e1-48c8-b8d8-5559f4bfeaac X-Archives-Hash: 14e921aac35472f848b7c03827b99428 commit: 9023b0d68d8c7ab365852cf3a533a41219516987 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Thu Dec 26 12:03:23 2024 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Dec 29 09:23:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=9023b0d6 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 <ulm <AT> gentoo.org> eclass/elisp.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 1fa8aab..e2f629e 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 }