Sorry, Max, I was indeed talking about the info documentation files. The bug _is_ in install-info and is simple to fix. I don't know why it is not fixed in Debian sources, the bug has beed outstanding for well over a year.
Patch follows: --- install-info.pl.old Sat Jan 26 01:56:31 2002 +++ install-info.pl Sat Jan 26 01:57:07 2002 @@ -133,8 +133,8 @@ while(<IF>) { m/^START-INFO-DIR-ENTRY$/ && last; m/^INFO-DIR-SECTION (.+)$/ && do { - $sectiontitle = $1 unless defined($sectiontitle); - $sectionre = '^'.quotemeta($1) unless defined($sectionre); + $sectiontitle = $1 unless ($sectiontitle); + $sectionre = '^'.quotemeta($1) unless ($sectionre); } } while(<IF>) { last if m/^END-INFO-DIR-ENTRY$/; $asread.= $_; } The problem being that both sectiontitle and sectionre are defined to the empty string. Trust me :-), it works with this fix. Without it any fink package that uses the InfoDocs: ends up with its documentation in hte misc section. Peter On Saturday, January 26, 2002, at 01:00 AM, Christian Swinehart wrote: > On Friday, January 25, 2002, at 10:17 AM, Max Horn wrote: >> At 23:54 Uhr +0900 25.01.2002, Peter O'Gorman wrote: >>> The lack of sections is annoying, >> >> What do you mean, "lack of sections"? What sort of "sections" >> do you refer to? Info-package sections, dppkg/apt sections, or >> what? >> Sorry, my mind reader module is off today, please try to be a >> bit more descriptive next time around, eases life for us all. > > He's talking about sections within the gnu info documentation > system (i.e. the command `info' installed through the texinfo > package). > > Looking at my dir file, it seems that everything that doesn't > manually call install-info in its PostRm just gets lumped into > Miscellaneous. I haven't really examined the script, but I'm > less sure that the error is in install-info since it's > identical to the one used by debian. You'd think that if there > were a problem, they would have spotted it before we did; but > you never know... > _______________________________________________ Fink-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-devel