From: Jim Meyering Date: Sat, 2 Nov 1996 14:47:46 +0000 (+0000) Subject: (MAKEINFO): Set to makeinfo --no-split. X-Git-Tag: TEXTUTILS-1_19q~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1291b1652a4b82c77401cf3300d3b0c3979fb7f4;p=thirdparty%2Fcoreutils.git (MAKEINFO): Set to makeinfo --no-split. Otherwise, the generated info files have 15-byte names and that loses on systems with 14-byte max. --- diff --git a/doc/Makefile.am b/doc/Makefile.am index 6640d20efe..43d611b3d2 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -4,3 +4,9 @@ info_TEXINFOS = fileutils.texi # FIXME: remove texinfo.tex when automake has been fixed to include it # automatically EXTRA_DIST = perm.texi getdate.texi texinfo.tex + +# Tell makeinfo to put everything in a single info file: sh-utils.info. +# Otherwise, it would also generate files with names like sh-utils.info-[123], +# and those names all map to one 14-byte name (sh-utils.info-) on some crufty +# old systems. +MAKEINFO = makeinfo --no-split