diff options
author | Jim Meyering <jim@meyering.net> | 1996-11-02 14:47:46 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-11-02 14:47:46 +0000 |
commit | 1291b1652a4b82c77401cf3300d3b0c3979fb7f4 (patch) | |
tree | 8e6adbc898c96858190dca0b8b8cd0b9c8cd0ea5 /doc | |
parent | 1b5b75d13e8402282bc6adba68c1283463eab336 (diff) | |
download | coreutils-1291b1652a4b82c77401cf3300d3b0c3979fb7f4.tar.xz |
(MAKEINFO): Set to makeinfo --no-split.
Otherwise, the generated info files have 15-byte names and that
loses on systems with 14-byte max.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 6640d20ef..43d611b3d 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 |