Fix generation of aliased manpages with current info files --- scripts/newlibinfo2man.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: cygwin-doc/scripts/newlibinfo2man.pl =================================================================== --- cygwin-doc.orig/scripts/newlibinfo2man.pl +++ cygwin-doc/scripts/newlibinfo2man.pl @@ -20,7 +20,7 @@ mkdir $mandir, 0755; # We know which nodes are summaries from the list @summary_nodes = qw( Top Math version Reentrancy Index Ctype Stdio Strings Signals Timefns Locale Misc Syscalls Stubs -ReentrantSyscalls Arglists Stdarg Varargs Stdlib LibraryIndex ); +ReentrantSyscalls Arglists Stdarg Varargs Stdlib LibraryIndex DocumentIndex ); foreach (@ARGV) { @@ -129,7 +129,7 @@ foreach (@ARGV) # Some man pages desribe more than one function like: #'* acosf: acos.' # The Index tells us which links to make - if ((grep /$node/, "Index") || (grep /$node/, "Library Index")) + if ((grep /$node/, "Index") || (grep /$node/, "LibraryIndex") || (grep /$node/, "DocumentIndex")) { s/.br\n//; s/\(.*//; # Remove (line 6)