Bug 20498

Summary: texi2dvi does not recognize indices with extension ?o
Product: [Retired] Red Hat Linux Reporter: Sebastiano Vigna <sebastiano.vigna>
Component: texinfoAssignee: Bernhard Rosenkraenzer <bero>
Status: CLOSED RAWHIDE QA Contact: David Lawrence <dkl>
Severity: medium Docs Contact:
Priority: medium    
Version: 6.2   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2000-11-07 22:58:04 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Sebastiano Vigna 2000-11-07 22:58:02 UTC
When texi2dvi compiles a texinfo file, it recognize the index files by
filtering the xref files with the following sed program

    index_files=`echo "$orig_xref_files" \
                 | sed "s!.*\.aux!!g;
                        s!./$filename_noext\..o.!!g;
                        s/^[ ]*//;s/[ ]*$//"`


This however is wrong if there is a defined index with extension .co,
because it will be cut by the third line filter. The "\..o." part
should be really "\..o[^ ]", so that you do not match ".co" followed by a
space.

Comment 1 Bernhard Rosenkraenzer 2000-11-08 15:37:53 UTC
Fixed in -17