mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-16 14:29:05 -07:00
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>
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user