diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-12-26 13:03:23 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-12-29 10:22:04 +0100 |
commit | 8a6207aae78d8f1a13cb430ecf4728d11cd471b7 (patch) | |
tree | d7458af1f30aa74e0d39d04c7f19e5b67fb21eba /eclass | |
parent | dev-ruby/ruby-romkan: enable ruby34 (diff) | |
download | gentoo-8a6207aae78d8f1a13cb430ecf4728d11cd471b7.tar.gz gentoo-8a6207aae78d8f1a13cb430ecf4728d11cd471b7.tar.bz2 gentoo-8a6207aae78d8f1a13cb430ecf4728d11cd471b7.zip |
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@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |